-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.scss
105 lines (80 loc) · 1007 Bytes
/
style.scss
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
body {
background-color: #000;
color: #fff;
font-size: 32px;
}
h1 {
font-size: 3.5em;
margin-top: 25px;
}
h2 {
font-size: 2.2em;
margin-top: 50px;
margin-bottom: 25px;
}
h3 {
font-size: 1.2em;
margin-top: 30px;
margin-bottom: 15px;
}
a {
&.btn-primary:hover {
background-color: #fff;
color: #0062cc;
}
color: yellow;
&:hover,
&:focus {
color: orange;
}
&:focus {
border: solid 1px red;
font-size: 1.1em;
}
}
li {
margin-top: 5px;
margin-bottom: 5px;
}
.fa {
margin-right: 10px;
}
footer {
background-color: #333;
padding-top: 15px;
padding-bottom: 15px;
font-size: 20px;
h2 {
text-align: center;
font-size: 1.5em;
margin-top: 0;
}
li {
&:first-of-type {
text-align: right;
}
}
}
@media (max-width: 768px) {
body {
font-size: 21px;
}
h1 {
font-size: 2.7em;
}
h2 {
font-size: 2em;
}
}
@media (max-width: 576px) {
footer {
h2 {
text-align: left;
}
li {
&:first-of-type {
text-align: left;
}
}
}
}