aboutsummaryrefslogtreecommitdiffstats
path: root/src/public/css/style.css
blob: cdcad8cf167c6b7bb75ebbd75998f78ea4dbea37 (plain) (blame)
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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
body {
    background-color: black;
}

.header {
    color: white;
    text-align: center;
    vertical-align: middle;
    position: relative;
    /* top: 30px; */
    margin: 5px;
    font-family: "Times New Roman", Times, serif;
}


/* Customize HTML paragraph element margins */

p {
    display: block;
    margin-top: 1em;
    margin-bottom: 1em;
    margin-left: 15%;
    margin-right: 15%;
}


/* Customize the positioning of the logo */




/*-------------------------Buttons-----------------------------------------------------*/


/* Used for id=button1 */

#button1 {
    background-color: #0a3f73;
    border: solid;
    border-color: #d5d6d2;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    font-family: "Constantia", sans-serif;
    border-radius: 10px;
    display: inline-block;
    font-size: 20px;
}


/* Used for id=button1 - What the button looks like when a user puts one's cursor on it */

#button1:hover {
    background-color: white;
    color: maroon;
    cursor: pointer;
}


/* Used for id=button2 */

#button2 {
    /* #ebcba9 is similar to a tan color */
    background-color: #ebcba9;
    border: solid;
    border-color: #d5d6d2;
    /* #693100 is similar to a brown color */
    color: #693100;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    font-family: "Constantia", sans-serif;
    border-radius: 10px;
    display: inline-block;
    font-size: 20px;
}


/* Used for id=button2 - What the button looks like when a user puts one's cursor on it */

#button2:hover {
    background-color: white;
    color: #0a3f73;
    cursor: pointer;
}


/* Used for id=button2 */

#button3 {
    /* #cf7d4e is similar to a light brown color */
    background-color: #cf7d4e;
    border: solid;
    border-color: #d5d6d2;
    /* #094f02 is similar to a dark green color */
    color: #094f02;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    font-family: "Constantia", sans-serif;
    border-radius: 10px;
    display: inline-block;
    font-size: 20px;
}


/* Used for id=button2 - What the button looks like when a user puts one's cursor on it */

#button3:hover {
    background-color: white;
    color: maroon;
    cursor: pointer;
}

a {
    color: white;
    text-decoration: none;
}


/* Used for id=main */

#main {
    color: white;
    /* border-style: solid; */
    /* border: 1px solid maroon; */
    text-align: center;
    margin: 5px;
}

#about {
    font-size: large;
}


/* Used for id=title1 */

#title1 {
    font-size: xx-large;
}


/* Used for id=title2 */

#title2 {
    font-size: xx-large;
    font-weight: bold;
    margin-top: 20px;
}


/* Used for id=title3 */

#title3 {
    font-size: xx-large;
    font-weight: bold;
    margin-top: 15px;
}

#subtitle {
    font-size: large;
}

#subtitle1 {
    font-size: 23px;
}

#Background {
    color: #ffbb00;
}

#Pendulum_info {
    /* #4294cf is similar to a light blue color */
    color: #4294cf;
}

#choose_file {
    border: none;
    text-decoration: none;
    display: inline-block;
}

#submit {}


/* Used for id=Start */

#Start {
    font-size: 25px;
    font-weight: bold;
    color: #ffbb00;
}


.navbar {
    top: 0;
    width: 100%;
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #7a0019;
}

li {
    float: left;
}

li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    font-family: "Raleway", sans-serif;
    text-decoration: none;
}



li a:hover {
    background-color: #ffcc33;
    color: #000000;
    /* Remove underlines from links */
    text-decoration: none;
}