-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommon.css
More file actions
83 lines (71 loc) · 1.04 KB
/
common.css
File metadata and controls
83 lines (71 loc) · 1.04 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
/* overall */
body {
background-color: white;
font-family: Montserrat, Helvetica Neue, sans-serif;
padding: 10px;
}
.main {
width: 100%;
max-width: 1320px;
margin: auto;
background-color: white;
padding: 10px;
}
.center {
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
}
p{
font-family: Merriweather, Georgia, serif;
text-align: justify;
}
p.left{
text-align: left;
}
li{
font-family: Merriweather, Georgia, serif;
}
.separator{
padding:20px;
text-align: center;
color: #b69d74;
}
.navbar {
overflow: hidden;
background-color: #1e84c4;
position: fixed;
top: 0px;
left: 0px;
width: 100%;
}
h1{
color: #1e84c4;
text-shadow: 1px 1px black;
text-align: center;
}
h2{
color: #1e84c4;
}
img{
padding-top: 30px;
width: 50%;
max-width: 500px;
}
.navbar a {
float: left;
display: block;
color: white;;
text-align: center;
padding: 10px 10px;
text-decoration: none;
font-size: 17px;
}
.navbar a.selected {
font-weight: bold;
}
.navbar a:hover {
background: #81b9de;
color: black;
}