-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
99 lines (86 loc) · 1.64 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Roboto', sans-serif;
font-size: 10px;
--primary-color: #6c5ce7;
--secondary-color: #a29bfe;
--light-color: #eeeeee;
}
html,
body {
min-height: 100%;
background: var(--light-color);
}
.container {
max-width: 75rem;
margin: 0 auto;
padding: 0 1%;
display: flex;
flex-direction: column;
align-items: center;
}
.title {
margin: 1.6rem 0 3.2rem;
text-transform: uppercase;
font-size: 3rem;
color: var(--primary-color);
}
.btn-import {
align-self: flex-start;
background: var(--light-color);
display: flex;
align-items: center;
justify-content: center;
width: 20rem;
height: 3rem;
border: 0.2rem solid var(--primary-color);
border-radius: 1rem;
text-transform: uppercase;
font-size: 1.2rem;
font-weight: 700;
color: var(--primary-color);
cursor: pointer;
transition: background 0.3s, color 0.3s;
}
.btn-import:hover {
background: var(--primary-color);
color: var(--light-color);
}
.field-file {
display: none;
}
.table-container {
width: 100%;
margin: 3.2rem 0;
}
table {
width: 100%;
border-radius: 1rem 1rem 0 0;
border-collapse: collapse;
text-align: center;
overflow: hidden;
}
table thead {
background: var(--primary-color);
color: var(--light-color);
}
table tbody tr {
border-bottom: 0.1rem solid var(--primary-color);
transition: background 0.3s, color 0.3s;
}
table tbody tr:hover {
background: var(--secondary-color);
color: var(--light-color);
}
table th,
table td {
padding: 1.2rem 0;
font-size: 1.4rem;
word-wrap: break-word;
}
table th {
text-transform: uppercase;
font-weight: 700;
}