-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.less
55 lines (45 loc) · 1011 Bytes
/
style.less
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
@import url(https://fonts.googleapis.com/css?family=Roboto:400,100,700,500,300|Roboto+Condensed:400,700);
body {
font-size:16pt;
font-family:'Roboto', helvetica, verdana, sans-serif;
header {
min-height:20vh;
padding:2rem 0;
background:#46485B;
color:#F5F2F2;
}
main {
min-height:60vh;
padding:2rem 0;
background:#F5F2F2;
ul {
padding:0;margin:0;
li {list-style-type:none;}
}
}
footer {
min-height:20vh;
padding:2rem 0;
background:#F2BD70;
ul {
padding:0;margin:0;
li {display:inline-block;margin-right:1rem;}
margin-bottom:1rem;
}
p {font-size:smaller;}
}
a {
color:inherit;
border-bottom:dotted 1px;
&:hover {
text-decoration: none;
}
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Roboto Condensed', sans-serif;
}
h1 {font-size:6rem;font-weight:bold}
h2 {font-size:3.25rem;font-weight:bold}
h3 {font-size:2.5rem;}
p, ol, ul, blockquote {font-size:2rem;}
}