-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.scss
87 lines (72 loc) · 1.48 KB
/
index.scss
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
@import './node_modules/vanillajs-datepicker/sass/datepicker';
@import './node_modules/vanillajs-datepicker/sass/datepicker-bulma';
.body-style {
background-color: #F5F7F9;
font-family: 'Open Sans', Arial, serif;
font-size: 14px;
margin: 0 8px;
}
.input-style {
height: 27px;
border-radius: 4px;
border: 1px solid #DDE3E7;
padding: 0 10px;
margin-right: 10px;
}
.submit-button {
background: #0059FF;
color: white;
border-radius: 4px;
height: 30px;
border: none;
cursor: pointer;
width: 70px;
}
.header-div {
display: flex;
height: 3rem;
align-items: center;
}
table {
font-family: Arial, Helvetica, sans-serif;
border-collapse: collapse;
width: 100%;
}
table td, table th {
border: 1px solid #ddd;
padding: 8px;
}
table tr:nth-child(even){background-color: #f2f2f2;}
table tr:hover {background-color: #ddd;}
table th {
padding-top: 12px;
padding-bottom: 12px;
text-align: left;
background-color: #04AA6D;
color: white;
}
#spinner{
visibility: hidden;
width: 80px;
height: 80px;
border: 2px solid #f3f3f3;
border-top:3px solid #0059FF;
border-radius: 100%;
position: absolute;
top:0;
bottom:0;
left:0;
right: 0;
margin: auto;
animation: spin 1s infinite linear;
}
#spinner.show {
visibility: visible;
}
@keyframes spin {
from {
transform: rotate(0deg);
} to {
transform: rotate(360deg);
}
}