-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
138 lines (120 loc) · 2.7 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
/***************************
Site Design CSS
***************************/
body {
margin: 0;
padding: 0;
font-family:'GT Walsheim', 'Open Sans', sans-serif;
background-image: url(https://microbit0.blob.core.windows.net/pub/pdijdjqv), -webkit-linear-gradient(left bottom, #FD645B 30%, #E73EE6 100%);
}
#header {
background-color: #f669aa;
border-bottom: 1px solid #f95c79;
padding: 20px;
text-align: center;
color: #fff;
font-size: 36px;
}
#content {
padding: 30px;
text-align: center;
font-size: 18px;
}
#box {
margin: auto;
top: 0;
left: 0;
bottom: 0;
right: 0;
height: auto;
width: 50%;
padding: 2em;
color: #333;
text-align: center;
overflow: visible;
border-radius: 10px
}
h1 {
font-family: 'Open Sans', sans-serif;
font-weight: 700;
text-transform: uppercase;
font-size: 3em;
line-height: 1.3em;
letter-spacing: -4px;
margin: 0.8rem 0 0 0;
padding-bottom: 5px;
}
p {
font-family: 'Open Sans', sans-serif;
font-weight: 300;
font-size: 1em;
line-height: 1.65em;
margin: 0.6em auto 0.6em auto;
padding: 0;
width: 23em;
}
p.small {
font-size: 0.8em;
}
a,
a:visited,
a:hover {
color: #333;
font-weight: 600;
}
/***************************
Google Table CSS
***************************/
.google-visualization-table-tr-even,
.google-visualization-table-tr-even td,
.google-visualization-table-tr-even-nonstrict {
background-color: #fff !important;
color: #333 !important;
}
.google-visualization-table-tr-odd,
.google-visualization-table-tr-odd td,
.google-visualization-table-tr-odd-nonstrict {
background-color: #fff !important;
color: #333 !important;
}
.google-visualization-table-tr-sel,
.google-visualization-table-tr-sel td,
.google-visualization-table-tr-sel-nonstrict {
background-color: #333 !important;
color: #fff !important;
}
.google-visualization-table-tr-over,
.google-visualization-table-tr-over td,
.google-visualization-table-tr-over-nonstrict {
background-color: #333 !important;
color: #fff !important;
}
.google-visualization-table-td,
.google-visualization-table-th {
border: 1px solid #333 !important;
color: #fff !important;
}
.google-visualization-table-tr-head,
.google-visualization-table-tr-head td,
.google-visualization-table-tr-head-nonstrict {
background-color: #333 !important;
background-image: none !important;
color: #fff !important;
}
.google-visualization-table .gradient {
background-image: none !important;
}
.google-visualization-table-table {
font-size: 20pt !important;
}
/***************************
Text Selection CSS
***************************/
::-moz-selection {
color: #fff;
background: #333;
}
::selection {
color: #fff;
background: #333;
}