-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.css
90 lines (87 loc) · 1.61 KB
/
main.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
body{
background-color: lightskyblue;
display: flex;
min-height: 100vh;
flex-direction: column;
}
p{
font-family: Georgia, 'Times New Roman', Times, serif
}
.choice{
margin:0;
display: inline-block;
}
.selectButton{
float: right;
margin-left: 100%;
position: relative;
bottom: 31px;
padding-bottom: 34px;
}
li{
background-color: transparent;
margin-top: 30px;
padding-bottom: 2px;
}
.submitButton{
float: right;
margin: -15px -70px;
position: absolute;
left: 45%;
}
.hintButton{
float: right;
position: relative;
margin-top: -6%;
margin-right: 41%;
left: 8%;
right: -10%;
}
.hintText{
display:block;
word-wrap: break-word;
}
.question-marker {
background-color: yellow;
background-size: auto;
}
pre{
counter-reset: line;
}
code{
counter-increment: line;
max-width:30px;
word-wrap: break-word;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
caption::before{
content: "\A";
white-space: pre;
}
p.firstLine::before{
content: "Line" !important;
font-style: italic !important;
}
p.firstLine{
counter-increment: line;
word-wrap: break-word !important;
max-width: 37ch !important;
font-family: 'Times New Roman', Times, serif;
}
p.everyLine{
counter-increment: line;
word-wrap: break-word !important;
max-width: 37ch !important;
font-family: 'Times New Roman', Times, serif;
}
p.everyLine::before{
content: counter(line);
-webkit-user-select: none;
font-style: italic;
}
p.attribution{
/*Add later*/
}
main{
flex: 1 0 auto;
}