-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylesheet.css
123 lines (104 loc) · 1.67 KB
/
stylesheet.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
body{
text-align:center;
color: rgba(36, 21, 133, 1);
font-family: sans-serif;
text-align:center;
}
#container{
margin-left:auto;
margin-right:auto;
background-repeat: no-repeat;
background-size:cover;
}
/*Top portion by title*/
h1{
padding:0;
margin: 0;
}
#title{
padding:0;
margin: 0;
border : 0;
height: 24%;
width:100%;
color:rgba(250, 250, 250, 1);
font-size: 375%;
text-align:center;
background-color: rgba(40,54,92,.8);
}
/*Middle page break area*/
#page-break{
height:2%;
background-color:rgba(165, 220, 241, .7);
}
/*Main area*/
#main{
width:100%;
height:76%;
font-size:170%;
background-color: rgba(217, 231, 249, .92);
margin-top:0;
}
#compare{
width:9%;
height:9%;
font-size:75%;
border-color: rgba(36, 21, 133, 1);
border-width:4px;
font-family: "Noto Sans", sans-serif;
color:F9F8F8;
background-color: rgba(112, 118, 207, 1);
}
#compare{
background-color: rgba(131, 152, 222, 1);
cursor:pointer;
}
/*input boxes*/
form{
width:35%;
display: table;
margin-left:auto;
margin-right:auto;
}
p{
display: table-row;
}
label{
display: table-cell;
text-align:left;
}
input{
display: inline-block;
vertical-align:middle;
}
.addresses{
width:110%;
}
.requests{
font-size: 110%;
}
/*table displaying results*/
table, th, td{
border: 1px solid black;
}
td{
text-align:right;
font-size: 150%;
}
th{
font-size: 175%;
padding-left: auto;
padding-right:auto;
}
#table{
width: 38%;
margin-left:auto;
margin-right:auto;
visibility:hidden;
border-collapse:collapse;
}
/*message summarizing table*/
#message{
text-align:center;
font-size:120%;
}