forked from bandipurhouse/studentdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
77 lines (68 loc) · 1.03 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
*{
margin: 0;
padding: 0;
}
html{
height: 100vh;
}
.navbar, .footer{
height: 70px;
}
main{
margin: 0;
padding: 0;
min-height: calc(100vh - 70px - 70px);
}
/* main body */
#sbar {
width: clamp(200px, 50%, 600px);
}
#ssel{
width: 120px;
}
/* tips */
.tipsbody{
display: grid;
grid-template-columns: 125px 1fr;
}
.tipsbody h3{
padding: 18px 0 0 0;
}
.tipsbody *{
grid-column: 1 / 3;
}
.tipsbody code, .tipsbody p{
padding-top: 0;
margin-top: 0;
font-size: 1rem;
line-height: 1rem;
}
.tipsbody code{
grid-column: 1 / 2;
}
.tipsbody p{
grid-column: 2 / 3;
}
.link{
text-decoration: none;
}
/* footer */
.footer{
text-align: center;
line-height: 70px;
color: white;
}
/* scrollbar */
body::-webkit-scrollbar {
width: 0.5rem;
}
body::-webkit-scrollbar-track {
box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
body::-webkit-scrollbar-thumb {
background-color: #212529;
}
div.legend{
text-align: center;
text-shadow: 10px black;
}