-
Notifications
You must be signed in to change notification settings - Fork 1
/
khmer.m.css
99 lines (85 loc) · 1.58 KB
/
khmer.m.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
91
92
93
94
95
96
97
98
99
html {
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
font-size: medium;
}
body {
background: lightskyblue;
margin: 0;
display: flex;
flex-direction: column;
}
header {
height: 30vh;
background: lightskyblue;
display: flex;
flex-direction: column;
justify-content: space-evenly;
align-items: center;
}
header section {
display: flex;
flex-direction: row;
justify-content: space-evenly;
align-items: center;
width: 100vw;
}
main {
height: fit-content;
padding: 5px;
background: lightseagreen;
text-align: center;
}
footer {
height: 15vh;
background: lightsteelblue;
display: flex;
flex-direction: column;
justify-content: space-evenly;
align-items: center;
}
footer small {
order: 1;
}
header img {
height: 80px;
}
h1 {
font-size: 2rem;
}
h2 {
font-size: 1.5rem;
color: whitesmoke;
}
ul {
font-size: 1.3rem;
display: flex;
flex-flow: column wrap;
list-style: none;
margin: 0;
padding: 0;
}
a, select, small, strong {
font-size: 1.1rem;
}
li {
width: 75%;
height: 25%;
background-color: bisque;
margin: 20px;
box-shadow: 5px 5px 5px purple;
border-radius: 10px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-evenly;
text-align: center;
padding: 15px;
}
main nav:first-of-type a {
display: flex;
justify-content: center;
margin: 5px;
}
main nav:last-of-type a {
margin: 5px;
}