-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtime2temp-theme.css
120 lines (100 loc) · 1.68 KB
/
time2temp-theme.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
115
116
117
118
119
120
table {
border-collapse: collapse;
border-spacing: 0;
}
body,
input,
select,
textarea {
color: #ffffff;
font-family: 'Source Sans Pro', Helvetica, sans-serif;
font-size: 16pt;
}
body {
padding: 0 1rem;
}
@media screen and (max-width: 1680px) {
body,
input,
select,
textarea {
font-size: 14pt;
}
}
@media screen and (max-width: 1280px) {
body,
input,
select,
textarea {
font-size: 12pt;
}
}
@media screen and (max-width: 360px) {
body,
input,
select,
textarea {
font-size: 11pt;
}
}
@media screen and (max-width: 480px) {
html,
body {
min-width: 320px;
}
}
body {
background: #242943;
}
/* Table */
.table-wrapper {
-webkit-overflow-scrolling: touch;
overflow-x: auto;
}
table {
margin: 1rem 0 1rem 0;
width: 100%;
}
table tbody tr {
border: solid 1px rgba(212, 212, 255, 0.1);
border-left: 0;
border-right: 0;
}
table tbody tr:nth-child(2n + 1) {
background-color: rgba(212, 212, 255, 0.035);
}
table td {
padding: 0.75rem 0.75rem;
}
table th {
color: #ffffff;
font-weight: 600;
padding: 0 0.75em 0.75em 0.75em;
text-align: left;
}
table thead {
border-bottom: solid 2px rgba(212, 212, 255, 0.1);
}
table tfoot {
border-top: solid 2px rgba(212, 212, 255, 0.1);
}
table.alt {
border-collapse: separate;
}
table.alt tbody tr td {
border: solid 1px rgba(212, 212, 255, 0.1);
border-left-width: 0;
border-top-width: 0;
}
input[type='text'] {
appearance: none;
background: rgba(212, 212, 255, 0.035);
border: none;
border-radius: 0;
color: inherit;
display: block;
outline: 0;
padding: .75rem .75rem;
text-decoration: none;
width: calc(100% - 1.5rem); /* subtract padding */
}