-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
63 lines (50 loc) · 812 Bytes
/
main.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
body {
padding: 0px;
}
#title {
text-align: center;
margin-bottom: 30px;
}
#main_container {
background-color: #CDCDCD;
min-height: 100%;
}
#inner_container {
background-color: #FFF;
min-height: 60%;
border-radius: 10px;
box-shadow: 10px 10px 2px #ABABAB;
}
#buttons {
width: 50%;
}
#buttons a {
padding-top: 20px;
padding-bottom: 20px;
margin-bottom: 50px;
}
#query_form {
text-align: center;
}
.control-container {
display: inline-block;
}
.control-group label {
text-align: left;
}
#results {
text-align: center;
}
table {
margin: auto;
margin-top: 20px;
margin-bottom: 20px;
width: 60%;
}
td {
padding-right: 2%;
padding-left: 2%;
width: 10%;
text-align: center;
border: solid 1px black;
}