-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
103 lines (96 loc) · 1.75 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
100
101
102
103
.hidden {
display: none !important;
}
.logger-container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.logger-container h1 {
font-weight: 800;
}
.logger-container .main {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.logger-container .main button {
width: 100%;
font-weight: 800;
}
.logger-container .main button:hover {
border: 1px solid;
}
.stop-clear-logger {
display: flex;
justify-content: center;
align-items: center;
}
.stop-clear-logger button {
font-weight: 800;
}
.students-submissions p {
font-size: 1.2rem;
font-weight: 800;
border-bottom: none;
width: 50%;
}
.students-submissions p:last-child{
border-bottom: 1px outset;
}
.students-submissions p span {
font-size: 1rem;
font-weight: 400;
}
.submission-wrapper {
margin-top: 10px;
border: 3px solid;
padding: 10px;
}
.modal {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: black;
border: 1px solid;
border-radius: 10px;
z-index: 1000;
width: 300px;
padding: 20px;
}
.modal-content h3 {
margin: 0 0 10px 0;
color: #fff;
}
#logs-select {
width: 100%;
margin-bottom: 10px;
}
.modal-bottom {
display: flex;
justify-content: center;
align-items: center;
}
#load-error {
color: red;
font-size: .8rem;
font-weight: 800;
}
#scroll-up {
display: none;
position: fixed;
bottom: 20px;
right: 5px;
color: white;
border: 2px solid;
border-radius: 50%;
padding: 10px;
box-shadow: 0 0 4px 0;
}