-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
114 lines (103 loc) · 2.09 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
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
body {
margin: 0px;
font-family: Source Sans Pro,sans-serif;
}
.top-bar {
font-size: 24px;
font-weight: 500;
box-shadow: 0 1px 8px 2px rgba(0,0,0,.2);
transition: all .25s cubic-bezier(.23,1,.32,1) 50ms;
background-color: #00b386;
color: #fff;
padding: 20px 10px;
align-items: center;
line-height: 2em;
margin-bottom: 10px;
}
.top-bar input {
font-size: 24px;
font-weight: 500;
background-color: transparent;
border: 0;
padding: 0;
color: #fff;
transition: all .15s cubic-bezier(.23,1,.32,1) 0ms;
margin: 0px 10px;
}
.top-bar .input {
border-bottom: 2px solid #bbdefb;
}
.top-bar .submit {
background-color: #009973;
display: -ms-inline-flexbox;
display: inline-flex;
-ms-flex-align: center;
align-items: center;
-ms-flex-pack: center;
justify-content: center;
padding: 6px 8px;
font-size: 16px;
border-radius: 2px;
min-width: 64px;
margin-bottom: 0;
font-weight: 400;
text-align: center;
white-space: nowrap;
vertical-align: middle;
-ms-touch-action: manipulation;
touch-action: manipulation;
cursor: pointer;
background-image: none;
border: 1px solid transparent;
transition: all .25s cubic-bezier(.23,1,.32,1) 50ms;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.top-bar .submit:hover {
color: #fff;
background-color: #00664d;
border-color: transparent;
}
#tables,#msg {
margin: 20px;
}
#msg {
font-size: 24px;
font-weight: 500;
}
.overlay {
position: fixed;
background-color: #00b386;
z-index: 10;
cursor: not-allowed;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0.7;
display:none;
font-size: 5em;
text-align: center;
line-height: 5em;
animation: blinker 2s linear infinite;
}
@keyframes blinker {
50% {
opacity: 0.3;
}
}
.chbx {
accent-color: #009973;
height: 20px;
width: 20px;
}
.app_name {
text-align: center;
font-size: 2em;
margin: 20px;
color: #009973;
font-weight: bold;
text-shadow: 1px 1px #007777;
}