-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
71 lines (57 loc) · 848 Bytes
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
*{
background-color: rgb(35, 35, 40);
}
body{
padding: 8px;
}
h1{
text-align: center;
font-size: 75px;
margin: 10px;
padding: 8px;
}
table{
align-items: center;
margin-left: auto;
margin-right: auto;
}
td{
padding: 50px;
}
h2{
font-size: 50px;
text-align: center;
}
img{
width: 350px;
transition: transform .2s;
}
img:hover{
transform: scale(1.2);
}
h3{
text-align: center;
font-size: 35px;
}
h1, h2, h3{
color: white;
}
.buybtn{
text-align: center;
margin: 30px;
transition: transform .2s;
}
.buybtn:hover{
transform: scale(1.2);
}
a{
text-decoration: none;
background: blue;
color: #fff;
font-size: 20px;
font-weight: 500;
padding: 10px 30px;
margin-top: 20px;
border-radius: 6px;
border: 2px solid blue;
}