-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
81 lines (70 loc) · 1.16 KB
/
Copy pathstyle.css
File metadata and controls
81 lines (70 loc) · 1.16 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
75
76
77
78
79
80
81
.body {
margin: auto;
}
.container {
font-family: monospace, monospace;
color: #2080ad;
padding: 10px 100px 0px 100px;
}
.box {
border: 2px solid #666;
background-color: #ddd;
border-radius: 0.5em;
cursor: move;
}
.box.question {
padding: 0 50px 0 50px;
}
.box.option {
padding: 5px;
}
.box-questions {
background-color: #fafafa;
font-size: 20px;
overflow-x: auto;
white-space: pre-wrap;
line-height: 2;
border: none;
border-radius: 10px;
}
.box-options {
display: flex;
flex-direction: row;
gap: 10px;
}
.action-section {
display: flex;
justify-content: space-between;
flex-direction: row;
}
.btn {
padding: 10px;
border: none;
border-radius: 0.5em;
border: 2px solid #666;
color: #2080ad;
font-weight: bold;
}
.btn.submit-active {
background-color: #2080ad;
color: white;
cursor: pointer;
}
.btn.submit-inactive {
background-color: #fafafa;
color: #666;
cursor: not-allowed;
}
.btn.refresh {
display: none;
}
.box-finish {
text-align: center;
font-size: 32px;
font-weight: bold;
padding: 100px;
font-family: monospace, monospace;
color: #2080ad;
background-color: #fafafa;
display: none;
}