-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
92 lines (84 loc) · 1.59 KB
/
Copy pathstyle.css
File metadata and controls
92 lines (84 loc) · 1.59 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
82
83
84
85
86
87
88
89
90
91
92
.container {
border: 3px solid #eee;
border-top: 0px;
border-bottom: 0px;
max-width: 1000px;
font-family: Calibri;
margin: auto;
}
.container .sec {
width: 100%;
box-sizing: border-box;;
padding: 30px;
border-bottom: 3px solid #eee;
}
.sec h2 {
font-size: 28px;
color: cornflowerblue;
}
.sec p {
font-size: 24px;
line-height: 32px;
}
.sec div {
font-size: 24px;
line-height: 32px;
}
.chunk {
position: relative;
padding: 0 2px;
background-color: #f4f4f4;
border-radius: 5px;
}
/*.chunk:hover{
background-color: yellowgreen;
border: 1px solid #c0c0c0;
cursor: pointer;
}*/
.chunk.highlight {
border-radius: 5px;
background-color: yellowgreen;
color: white;
}
.choiceItem {
text-align: center;
font-size: 20px;
width: 30px;
height: 30px;
display: inline-block;
border: 1px solid black;
border-radius: 100%;
padding: 5px;
margin-right: 15px;
cursor: pointer;
}
.choiceItem:hover, .choiceItem.choiceSelected{
background-color: yellowgreen;
}
.chunkNo {
display: inline-block;
position: absolute;
left: -10px;
top: -10px;
font-style: italic;
color: orange;
}
.chunk.chunkDeleted {
color: #c0c0c0;
text-decoration: line-through;
}
.errorCorrection del {
background-color: hotpink;
}
.errorCorrection ins {
background-color: mediumspringgreen;
}
.brainstorm {
width: 100%;
line-height: 32px;
font-size: 24px;
font-family: Calibri;
box-sizing: border-box;
padding: 5px 15px;
border: 3px solid cornflowerblue;
}