-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
58 lines (48 loc) · 835 Bytes
/
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
@import 'node_modules/npm-font-open-sans/open-sans'
html, body {
width: 100%;
height: 100%;
font-family: 'Open Sans';
}
html.highlight {
background-color: #e6fff3;
}
#welcome-caption {
top: 35%;
transform: translateY(-35%);
position: absolute;
width: 100%;
}
.csv-image {
width: 4rem;
height: auto;
position: relative;
margin: auto;
display: block;
}
.csv-image-small {
width: 2rem;
height: auto;
position: relative;
}
#main-container {
display: none;
}
#copyright {
position: absolute;
bottom: 0.2rem;
right: 0.2rem;
}
.btn-purple:focus {
outline: none !important;
box-shadow: 0 0 0 0.2rem rgba(153,102,255,.5) !important;
}
.btn-purple {
background-color: #9966ff;
border-color: #9966ff;
color: white;
}
.btn-purple:hover {
background-color: #884dff;
color: white;
}