-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
84 lines (77 loc) · 1.55 KB
/
style.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
.page {
width: 80%;
max-width: 960px;
margin: 0 auto;
text-align: left;
background-color: #eee;
}
body {
font: 16px/26px 'Open Sans', Helvetica, Arial, sans-serif;
color: #454545;
margin: 0px;
padding: 0px;
background-color: #eee;
}
header {
padding: 0.75em 0;
text-align: center;
font-family: 'Montserrat', serif;
font-size: 21px;
text-shadow: 1px 1px #ccc;
}
.map-container {
width:800px;
margin: 0 auto;
position:relative;
}
#stateResults {
width: 25%;
font: 12px/16px 'Open Sans', Helvetica, Arial, sans-serif;
color: #454545;
}
#countryResults {
width: 95%;
font: 16px/28px 'Open Sans', Helvetica, Arial, sans-serif;
color: #454545;
}
#stateResults, #countryResults {
border-collapse: collapse;
background-color: #f2f2f2;
-webkit-box-shadow: 1px 1px 1px 1px rgba(204,204,204,0.5);
-moz-box-shadow: 1px 1px 1px 1px rgba(204,204,204,0.5);
box-shadow: 1px 1px 1px 1px rgba(204,204,204,0.5);
}
th, td {
text-align: left;
padding: 8px;
}
#stateResults th{
background-color: #3b3b3b;
color: white;
}
#countryResults th {
background-color: #ccf1ff;
color: black;
}
.name-1 {
background-color: rgb(1,185,254);
color: white;
}
.name-2 {
background-color: rgb(0, 57, 255);
color: white;
}
.winner {
background-color: #ccf1ff;
color: black;
}
footer p {
font-family: "Montserrat", sans-serif;
font-size: 12px;
text-align: center;
text-transform: uppercase;
}
footer span {
color: #f16059;
padding: 0 5px;
}