-
Notifications
You must be signed in to change notification settings - Fork 0
/
usac.css
61 lines (56 loc) · 818 Bytes
/
usac.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
html {
box-sizing: border-box;
}
*, *:before, *:after {
box-sizing: inherit;
}
body{
font-family:'Work Sans',sans-serif;
background-color:#FEFCFB;
margin:0;
font-size: 16px;
}
h1{
color:#00487c;
}
a{
color:#016fb9;
text-decoration:none;
}
a:hover{
text-decoration:dotted;
}
ul {
list-style:none;
padding-left:0;
}
.main{
max-width:600px;
width:100%;
margin:auto;
padding:30px;
}
nav{
background:black;
padding:10px 20px;
display:flex;
align-items: center;
/* justify-content: center;*/
}
.logo{
height:30px;
width:auto;
padding-right:20px;
}
h1{
color:white;
margin:0;
padding:0;
line-height:1rem;
font-size:1.2rem;
}
@media only screen and (max-width: 600px) {
body{
font-size:18px;
}
}