-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdashboard.css
98 lines (82 loc) · 1.77 KB
/
dashboard.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
.maingrid {
display: grid;
border: 2px solid #181818;
border-radius: 16px;
overflow: hidden;
grid-template-columns: 50% 50%;
grid-auto-rows: 40vh 40vh; /* adjusted for full view with other elements on 16:9, no scroll */
grid-gap: 1px;
background-color: #181818;
width: max(1200px, 92vw);
place-content: center;
margin-inline: auto;
}
@media ( max-width: 1200px ) { /* fill more of screen at smaller sizes */
.maingrid {
width: 98vw;
}
}
@media ( max-width: 750px ) { /* mobile view */
.maingrid {
grid-template-columns: 1fr;
grid-template-areas: " item1 "
" item3 "
" item2 "
}
}
.section {
border: 1px solid #181818;
background-color: #f8f9fb;
text-align: center;
padding-top: 10px;
}
body {
font-family: Arial, Helvetica, sans-serif;
background-color: white;
align-items: center;
display: grid;
}
.section::-webkit-scrollbar {
width: 20px;
padding-right: 5px;
}
.section::-webkit-scrollbar-track {
border-radius: 8px;
}
.infolist {
max-height: 35vh;
overflow: auto;
/* float:left;
clear:left; */
}
#category {
text-align: center;
border-bottom: 0;
padding-bottom: 0;
margin-bottom: 0;
}
#subhead {
text-align: center;
padding: .5em;
border: 0;
margin-bottom: .5em;
display: block;
}
h6 {
border: 0;
padding: 0;
margin: 0;
}
#toggleData {
display: block;
margin-left: auto;
margin-right: auto;
margin-bottom: .25em;
}
.errormessage{
color:red;
font-size: large;
}
.invisible {
display: none !important;
}