-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.css
More file actions
104 lines (90 loc) · 1.68 KB
/
index.css
File metadata and controls
104 lines (90 loc) · 1.68 KB
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
100
101
102
103
104
html {
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
font-size: medium;
}
body {
background: grey;
margin: 0;
display: flex;
flex-direction: column;
}
header {
height: 15vh;
background: lightskyblue;
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: lightseagreen;
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
}
footer {
height: 10vh;
background: lightsteelblue;
display: flex;
flex-direction: row;
justify-content: space-around;
align-items: center;
}
header img {
height: 100px;
}
h1 {
font-size: 3rem;
}
h2 {
font-size: 2rem;
margin-bottom: 0;
color: whitesmoke;
width: 80%;
text-align: center;
}
ul {
font-size: 1.8rem;
display: flex;
flex-flow: row wrap;
list-style: none;
margin: 0;
padding: 0;
}
select, a, small, strong {
font-size: 1.5rem;
}
li {
width: 25vw;
height: 25vh;
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;
}
header nav a {
margin: 5px;
}
main nav:first-of-type a {
display: flex;
margin: 5px;
justify-content: center;
}
main nav:last-of-type a {
margin: 10px;
}