forked from AdaGold/SinatraSite
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathmain.css
More file actions
179 lines (150 loc) · 2.8 KB
/
main.css
File metadata and controls
179 lines (150 loc) · 2.8 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
/*
* This is a CSS file.
* Inside of CSS files comments are started with /* and ended with:
*/
/*
* Starting with Wave 2 of this project we will be using CSS to style our
* web pages. You should place all of your styles in this file and then
* reference it from each of your HTML files.
*/
/*
* This file is located at "public/main.css" in your project directory.
* Because it is in the "public" directory, Sinatra knows to make the file
* accessible to your HTML files when you use the src="path/to/file"
* attribute on the appropriate tags.
*
* For example, to include an image into your site, place the file in the
* public directory and use <img src="/name_of_image.png"> in your HTML
* file. The "public" part of the path should *not* be included.
*/
html {
width: 960px;
margin-left: auto;
margin-right: auto;
}
body {
background-color: #C1CBE2;
margin-top: 0px;
padding-bottom: 60px;
}
#main {
margin-top: -20px;
padding-top: -10px;
}
header {
margin: 0 auto;
border-radius: 25px;
width: 100%;
height: 100px;
background-color: #0F337A;
}
#logo {
display: inline-block;
margin: 10px 15px 0px 0px;
padding: 0px;
float: right;
}
h1 {
display: inline-block;
margin-top: 10px;
padding-top: 5px;
margin-left: 10px;
color: #ED4A2E;
font-family: 'Bangers', cursive;
font-size: 40px;
letter-spacing: 2px;
}
h2 {
display: block;
padding-top: 5px;
margin-left: 10px;
color: white;
font-family: 'Lato', sans-serif;
margin-top: -30px;
}
h3 {
padding-left: 10px;
color: black;
font-family: 'Lato', sans-serif;
}
h4 {
padding-left: 10px;
color: black;
font-family: 'Lato', sans-serif;
}
h5 {
padding-left: 10px;
color: black;
font-family: 'Lato', sans-serif;
}
#translation {
margin-top: -15px;
}
img {
padding-left: 10px;
padding-top: 50px;
display: block;
}
#stroop {
margin-top: 0px;
margin-left: 0px;
padding-top: 0px;
padding-left: 10px;
}
.main-images {
display: inline-block;
margin-top: -50px;
}
p {
padding-left: 10px;
color: black;
font-family: 'Lato', sans-serif;
}
a {
color: #0F337A;
font-family: 'Lato', sans-serif;
}
a:active {
color: #ED4A2E;
}
nav {
padding-top: 5px;
padding-left: 10px;
color: #ED4A2E;
font-family: 'Lato', sans-serif;
}
ul {
margin-top: -10px;
font-family: 'Lato', sans-serif;
}
footer {
position: relative;
border-radius: 25px;
margin: 0 auto;
bottom: 0;
width: 100%;
height: 60px;
background-color: #0F337A;
}
table {
font-family: 'Lato', sans-serif;
}
#table-section {
padding-top: 15px;
}
.footer-link {
color: white;
}
#copyright {
display: inline;
float: right;
color: white;
font-family: 'Lato', sans-serif;
padding-top: -20px;
margin-top: -25px;
margin-right: 15px;
padding-left: 10px;
}
.other-line {
margin-top: -16px;
}