-
Notifications
You must be signed in to change notification settings - Fork 9
/
style.css
64 lines (51 loc) · 947 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
@font-face {
font-family: 'whoismono';
src: url('fonts/whois-mono.eot');
src: url('fonts/whois-mono.eot?#iefix') format('embedded-opentype'),
url('fonts/whois-mono.woff') format('woff'),
url('fonts/whois-mono.ttf') format('truetype'),
url('fonts/whois-mono.svg#whoismono') format('svg');
font-weight: normal;
font-style: normal;
}
body{
font-family: "whoismono", monospace;
color: rgb(255, 70, 0);
padding: 1rem;
}
header{
width: 30%;
position: fixed;
}
main{
margin-left: 35%;
}
h1,h2{
font-size: 3rem;
font-weight: normal;
margin: 0;
}
p{
margin: 0;
}
main p{
font-size: 3rem;
}
a{
text-decoration: none;
color: rgb(255, 70, 0);
}
a:hover{
text-decoration: underline;
}
main a{
font-size: 3rem;
display: block;
}
@media screen and (max-width: 800px){
main,header{
position: static;
margin: 0;
width: 100%;
}
}