-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
99 lines (80 loc) · 1.58 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
p {
margin: 0 0 1em 0;
}
h1 {
margin: 0;
}
h2 {
margin: 1em 0 0 0;
}
hr {
visibility: hidden;
}
div.io_format {
color: #333333;
background-color: #f5f5f5;
border: 1px solid #cccccc;
border-radius: 3px;
margin: 10px;
padding: 9.5px 9.5px 9.5px 13px;
font-size: 16px;
word-spacing: 0.8ex;
line-height: 1.4;
word-break: break-all;
white-space: pre;
}
pre.sample {
color: #333333;
background-color: #f5f5f5;
border: 1px solid #cccccc;
border-radius: 3px;
margin: 0;
padding: 9.5px 9.5px 9.5px 13px;
font-size: 16px;
}
button.copy {
float: right;
}
.testcase {
display: none;
}
.CodeMirror {
border: solid 1px #999;
height: 20em;
resize: vertical;
font-size: 16px;
}
#result {
text-align: center;
border-collapse: collapse;
}
#result thead th{
padding: 0 2em;
}
#result th, #result td {
vertical-align: middle;
border: solid 1px #ccc;
padding: 0.2em;
}
#result tr:nth-child(even) {
background-color: #eee;
}
#result tr td:nth-of-type(3) {
text-align: right;
}
#result span.status {
background-color: rgb(240, 173, 78);
border-radius: 3px;
color: rgb(255, 255, 255);
font-family: "Lato", "Helvetica Neue", arial, sans-serif;
font-size: 12px;
font-weight: bold;
line-height: 12px;
padding: 2px 5px 2px 5px;
}
#result span.wj {
background-color: rgb(128, 128, 128);
}
#result span.ac {
background-color: rgb(92, 184, 92);
}