forked from ObieSource/obiesource.github.io
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
46 lines (40 loc) · 682 Bytes
/
style.css
File metadata and controls
46 lines (40 loc) · 682 Bytes
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
body {
background-color: rgb(0,128,128);
font-family: "Georgia", serif;
}
main {
background-color:rgb(255,255,255);
border:solid black 1px;
padding:15px;
max-width:50em;
margin: 2em auto;
}
header {
background-color: white;
position: fixed;
left: 0;
right: 0;
top: 0px;
align-items: center;
border: 1px solid black;
}
header * {
text-decoration: underline;
}
header ul {
display: flex;
margin: 0 auto;
flex-wrap: wrap;
justify-content: center;
list-style: none;
}
header li {
margin: 0px;
padding: 0px;
margin-right: 1.5em;
}
header li a {
color: black;
font-weight: bold;
text-decoration: none;
}