-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
60 lines (54 loc) · 1.49 KB
/
styles.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
body {
margin: 0;
text-align: center;
font-family: 'Roboto Slab', serif;
background-color: #f4f6f6;
}
h1 {
font-size: 3rem;
margin: 50px auto 0 auto;
font-family: 'Roboto Slab', serif;
color: #1c2938;
}
h2 {
font-size: 2rem;
color: #1c2938;
}
footer {
font-family: 'Roboto Slab', serif;
font-size: 0.5rem;
color: #ff9c91;
margin-left: 20px;
}
.botheredness {
font-size: 3rem;
font-weight: bold;
color: #cd3f3e;
}
.btn {
background: #700961;
background-image: -webkit-gradient(top, #700961, #b80d57);
background-image: -webkit-linear-gradient(top, #700961, #b80d57);
background-image: -moz-linear-gradient(top, #700961, #b80d57);
background-image: -ms-linear-gradient(top, #700961, #b80d57);
background-image: -o-linear-gradient(top, #700961, #b80d57);
background-image: linear-gradient(to bottom, #700961, #b80d57);
-webkit-border-radius: 20;
-moz-border-radius: 20;
border-radius: 20px;
font-family: 'Roboto Slab', serif;
color: #ffffff;
font-size: 20px;
padding: 10px 20px 10px 20px;
text-decoration: none;
}
.btn:hover {
background: #e03e36;
background-image: -webkit-gradient(top, #e03e36, #ff7c38);
background-image: -webkit-linear-gradient(top, #e03e36, #ff7c38);
background-image: -moz-linear-gradient(top, #e03e36, #ff7c38);
background-image: -ms-linear-gradient(top, #e03e36, #ff7c38);
background-image: -o-linear-gradient(top, #e03e36, #ff7c38;
background-image: linear-gradient(to bottom, #e03e36, #ff7c38);
text-decoration: none;
}