-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
74 lines (61 loc) · 1.17 KB
/
Copy pathstyle.css
File metadata and controls
74 lines (61 loc) · 1.17 KB
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
/* width */
::-webkit-scrollbar {
width: 10px;
}
/* Track */
::-webkit-scrollbar-track {
background: #f1f1f1;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: rgb(35, 110, 164);
border-radius: 10px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #555;
}
body{
background-color: rgb(217, 219, 219);
}
#titleStyle{
text-align: center;
font-size: 60px;
padding: 15px;
color:rgb(35, 110, 164);
}
#studentTable {
margin: auto;
width: 60% !important;
}
.table-hover thead{
background-color: rgb(129, 193, 225);
}
.btn-block{
margin-left: 40%;
}
.btn-primary{
background-color: rgb(35, 110, 164) !important;
border-color: rgb(35, 110, 164) !important;
align-content: center;
margin-top: 20px;
margin-bottom: 20px;
}
.subjectName{
text-align: center;
}
.gradesTable{
border: 2px solid black;
align-content: space-between;
}
.main{
display:inline-flex;
flex-wrap: wrap;
gap: 25px;
margin-left: 35px;
margin-right: 35px;
}
.addGradeButton{
text-align: center;
padding: 15px;
}