-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
120 lines (119 loc) · 1.69 KB
/
main.css
File metadata and controls
120 lines (119 loc) · 1.69 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
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
font-family: Expressway;
background: black;
color: white;
border-radius: 10%;
}
body,
header,
div,
main {
border-radius: 15px;
}
main {
margin-left: 190px;
margin-top: 30px;
margin-bottom: 30px;
padding: 5px 20px 10px 20px;
width: 700px;
text-align: justify;
background-color: #9e0031;
}
nav {
display: block;
}
input,
textarea {
display: block;
margin-bottom: 15px;
}
input[type="radio"] {
display: inline;
}
textarea {
width: 400px;
height: 90px;
}
a {
color: #ffffff;
text-decoration: none;
}
a:hover {
color: #00a8e8;
}
input {
text-align: center;
}
header {
margin-top: 20px;
padding: 1px 10px 10px 20px;
background-color: #086788;
}
footer {
position: absolute;
height: 20px;
bottom: 1;
text-align: center;
width: 100%;
background-color: #9e0031;
margin: 0px;
}
h1,
h2,
h3 {
text-shadow: 2px 2px black;
}
img {
display: block;
width: 200px;
margin: auto;
}
table,
th,
td {
border: 1px solid rgb(255, 255, 255);
border-collapse: collapse;
padding: 15px;
margin: auto;
}
.sideBar {
z-index: 1;
height: auto;
position: absolute;
width: 150px;
top: 20px;
left: 20px;
background-color: #9e0031;
padding-bottom: 10px;
}
.sideBar a {
display: block;
padding: 20px 0px 15px 15px;
}
.backgroundBlue {
background-color: #009ffd;
}
.questions {
color: white;
padding: 5px 15px 15px 15px;
background-color: #086788;
}
.questionsSection {
margin-top: 30px;
display: grid;
grid-template-columns: 50% 50%;
grid-gap: 7px;
}
.questionsSection h2 {
text-align: left;
}
.mainContent {
margin-top: 30px;
background-color: black;
padding: 5px 15px 15px 15px;
}