-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
101 lines (87 loc) · 1.49 KB
/
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
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
body {
background-color: #CAEBF2;
/*background-color: #f9fcff;*/
}
/*div that holds everything on the page*/
#d3svg {
max-width: 100%;
}
/*styles the text at the top of the screen*/
.header-text {
font-family: "Raleway", sans-serif;
text-align: center;
}
.header-div {
margin-left: 10%;
margin-right: 10%;
}
.header-div p {
font-size: 1.2em;
/*margin-left: 2%;
margin-right: 2%;*/
}
.header-div h1 {
font-size: 2em;
}
#main-svg {
width:100%;
height: 250px;
}
#foreignObject {
width: 1300px;
height: 500px;
text-align: center;
}
/*this is the styling for the first ul*/
#icon-holder {
list-style-type:none;
display:inline;
padding-left: 0;
}
li {
display: inline;
margin: auto;
}
/*this styling applies to all icons*/
.icon {
font-size: 5em;
padding-left: 20px;
padding-top:100;
}
/*ul for the real icons*/
#real-holder {
opacity: 0;
/*visibility: hidden;*/
padding-left: 0;
padding-top: 3%;
}
#real-trump {
color:red;
}
/*coloring for the real icons (the hidden ones)*/
#real-hillary {
color:blue;
}
#real-other {
/*color: #55ba48;*/
color: green;
}
/*this styling applies to the bottom buttons*/
.btn {
text-align: center;
font-family: "Raleway", sans-serif;
font-size:1.5em;
color: white;
display:block;
width:300px;
height:50px;
background-color:#A9A9A9;
margin: auto;
border-radius:20%;
border:none;
outline:none;
}
.image-div {
margin-top:10%;
text-align: center;
}