-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.css
106 lines (97 loc) · 1.49 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
body {
overflow: hidden;
}
.excel-container {
height: calc(100vh - 88px);
overflow: auto;
}
#viewer {
position: relative;
min-height: 100vh;
}
#fileInput {
position: absolute;
top: 0;
right: 0;
opacity: 0;
}
th, td {
border: 1px solid black !important;
}
.excelButtons {
display: flex;
width: 100%;
background: gray;
}
.excelButtons button {
background: lightgray;
color: gray;
font-size: 12px;
padding: 5px;
}
.excelButtons button:first-child {
border-top-left-radius: 5px;
}
.excelButtons button:last-child {
border-top-right-radius: 5px;
}
.excelButtons button.active {
background: white;
color: green;
font-weight: 600;
}
.excelButtons button:focus {
outline: none;
}
.excel-table {
font-size: 12px;
}
.excel-table td {
padding: 5px !important;
}
.excel-table {
background: white;
height: calc(100% - 70px);
min-height: 100%;
}
.excel-table tr:nth-child(1) {
background: green;
color: white;
font-weight: 600;
}
.button {
background: green;
color: white;
position: relative;
overflow: hidden;
}
.button:hover {
color: white;
}
.navbar {
color: green;
font-weight: 500;
border-bottom: 1px solid green;
border-top: 1px solid green;
}
.navbar p {
margin: 0;
width: 100%;
text-align: center;
font-size: 20px;
}
.flex {
display: flex;
align-items: center;
}
.full-width {
width: 100%;
}
.no-sheet {
font-size: 20px;
color: gray;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}