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
|
@font-face {
font-family: Lekton;
src: url(Lekton/Lekton-Regular.ttf);
}
body {
background: rgb(100,180,230);
font-family: Lekton, monospace, sans-serif;
font-weight: 200;
}
h3 {
margin-bottom: 8px;
}
#container {
width: 640px;
margin: auto;
padding: 30px;
background: rgb(255,255,200);
}
.problem {
border: 1px solid rgb(100, 100, 80);
padding: 0 10px;
margin: 8px 0;
}
.submission-div {
border: 1px solid black;
max-height: 200px;
overflow-y: scroll;
background-color: rgb(200, 200, 160);
margin-bottom: 16px;
}
.submission-table {
width: 100%;
border-collapse: collapse;
}
.submission-table td, .submission-table th {
border: 1px solid black;
text-align: left;
padding: 2px;
}
.submission-table td {
background-color: rgb(255, 255, 200);
}
.submission-table th {
background-color: rgb(230, 220, 150);
}
|