-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtornadocss.css
123 lines (106 loc) · 1.73 KB
/
tornadocss.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 {
background-color: gainsboro;
}
h1 {
color: firebrick;
font-size: 40px;
}
p {
text-align: justify;
}
article {
display: block;
margin-left: auto;
margin-right: auto;
margin-top: 3%;
max-width: 700px;
background-color: #ac5353;
padding: 4em;
}
#my_dataviz {
padding-right: 15px;
padding-left: 0;
float: left;
}
#singular_viz {
float: right;
margin-right: 5%;
margin-top: 5%;
margin-bottom: 10%;
width: 450px;
height: 400px;
background-color: #ac5353;
padding: 4em;
}
#buttons {
margin-left: 40%;
padding-right: 0;
text-align: center;
}
#group-members {
text-align: center;
color: gainsboro;
}
.instructions {
max-width: 800px;
margin-left: auto;
margin-right: auto;
}
.message_box
{
margin-left: auto;
margin-right: auto;
display: block;
box-sizing: border-box;
padding: 1em;
padding-top: 0em;
max-width: 450px;
overflow: hidden;
background-color: white;
font-size: 1.25em;
}
.popup
{
background-color: rgba(0,0,0,0.5);
width: 100%;
height: 100%;
top: 0;
left: 0;
z-index: 1;
position: fixed;
display: block;
overflow-y: scroll;
padding: 4em;
box-sizing: border-box;
}
.button
{
display: block;
width: 100%;
background-color: gainsboro;
color: firebrick;
margin: 0;
padding: 0.5em;
display: inline-block;
box-sizing: border-box;
text-align: center;
font-variant: small-caps;
font-weight: bold;
}
.button:hover
{
background-color: firebrick;
color: white;
}
div.tooltip {
position: relative;
text-align: center;
width: 60px;
height: 28px;
padding: 2px;
font: 12px sans-serif;
background: lightsteelblue;
border: 0px;
border-radius: 8px;
pointer-events: none;
}