-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathkhmer.css
82 lines (69 loc) · 1.1 KB
/
khmer.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
html {
font-size: medium;
}
body {
background: grey;
margin: 0;
display: flex;
flex-direction: column;
}
header {
height: 15vh;
background: plum;
display: flex;
flex-direction: row;
justify-content: space-around;
align-items: center;
}
header section {
display: flex;
flex-direction: row;
justify-content: space-evenly;
align-items: center;
width: 50vw;
}
main {
height: 75vh;
background: thistle;
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
}
footer {
height: 10vh;
background: lavender;
display: flex;
flex-direction: row;
justify-content: space-around;
align-items: center;
}
header img {
height: 100px
}
main img {
height: 300px
}
h1 {
font-size: 3rem;
}
p {
font-size: 2rem;
}
a, select, small, strong {
font-size: 1.5rem;
}
p a {
font-size: 2rem;
}
header nav a {
margin: 5px;
}
main nav:not(:last-of-type) a {
display: flex;
margin: 5px;
justify-content: center;
}
main nav:last-of-type a {
margin: 10px;
}