-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathstijl.css
90 lines (89 loc) · 1.25 KB
/
stijl.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
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
body,
html {
font-family: Georgia, serif;
font-size: 24px;
line-height: 1.4;
color: #444;
padding: 0;
margin: 0;
}
#wrap {
padding: 25px 30px 0;
overflow: auto;
position: relative;
}
nav {
float: right;
position: absolute;
right: 12px;
top: 40px;
}
nav ul {
float: left;
list-style: none;
margin: 0;
padding: 0;
}
nav ul li {
float: left;
padding: 0 20px;
}
nav ul li a {
float: left;
}
h1 {
height: 38px;
font-size: 38px;
line-height: 38px;
margin: 10px 0 30px;;
float: left;
}
ol {
float: left;
padding: 0;
margin: 0;
border-style: solid none none solid;
border-width: 1px;
border-color: #ebebeb;
list-style: none;
}
ol li {
width: 48px;
height: 48px;
line-height: 48px;
float: left;
text-align: center;
border-style: none solid solid none;
border-width: 1px;
border-color: #ebebeb;
}
@media screen and (max-width: 1280px) {
h1 {
font-size: 32px;
}
nav {
font-size: 22px;
}
}
@media screen and (max-width: 1024px) {
h1 {
font-size: 26px;
}
nav {
font-size: 18px;
}
nav ul li {
padding: 0 10px;
}
}
@media screen and (max-width: 800px) {
h1 {
font-size: 20px;
}
nav {
font-size: 16px;
top: 70px;
left: 21px;
right: auto;
}
}