-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathjsstyle.css
103 lines (87 loc) · 1.58 KB
/
jsstyle.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
100
101
102
103
html, body {
margin: 0;
padding: 0px 0px 0px 0px;
font-family: 'Roboto', sans-serif;
color: #666666;
}
body {
background-color: whitesmoke;
}
.top-bar {
max-width: 1000px;
position: relative;
margin-left: auto;
margin-right: auto;
}
.logo {
font-size: 30px;
position: absolute;
padding: 0px 0px 0px 20px;
z-index: 3;
color: #131359;
font-weight: bold;
}
.top-menu {
background-color: #131359;
position: absolute;
top: 85px;
z-index: 2;
width: 100%;
}
.top-menu ul {
list-style-type: none;
font-size: 20px;
float: right;
margin-right: 20px;
}
.top-menu li {
display: inline-block;
}
.top-menu li a:link, .top-menu li a:visited {
color: white;
text-decoration: none;
padding: 20px 20px 20.5px 20px;
}
.top-menu li a:hover {
background-color: red;
}
.current-page-link {
background-color: #db0e0e;
}
.page-content {
position: relative;
top: 145px;
max-width: 1000px;
margin-left: auto;
margin-right: auto;
background-color: white;
z-index: 1;
}
.main-section {
padding: 10px 20px 10px 20px;
}
.main-section h1, .main-section h2 {
color: black;
}
.main-section figure, .main-section img {
display: block;
margin: auto;
width: 800px;
}
.footer {
position: relative;
top: 140px;
z-index: 3;
max-width: 1000px;
margin-left: auto;
margin-right: auto;
background-color:#3f3c3c;
}
.footer-content {
padding: 5px 5px 5px 20px;
color: white;
}
.footer-content a:link {
color: white;
text-decoration: none;
}