-
Notifications
You must be signed in to change notification settings - Fork 1
/
test-page.css
70 lines (68 loc) · 1.1 KB
/
test-page.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
#compare h2 {
font-size: 1.3em;
margin: .5rem 0;
font-weight: bold;
}
textarea {
margin: 0;
border: 0;
font: inherit;
vertical-align: baseline;
width: 100%;
max-height: 100vh;
padding: .4em;
}
textarea, .cm-editor {
border-radius: .3em;
border: 1.5px solid #dedede;
margin-top: .5em;
}
.cm-editor {
height: auto !important;
}
#buttons {
text-align: center;
}
#done {
color: #fff;
border: 1px solid #36c;
border-radius: 2px;
background-color: #36c;
padding: 5px 12px;
margin-top: .5rem;
font-weight: bold;
line-height: 1.4;
cursor: pointer;
}
#done:hover {
background-color: #447ff5;
border-color: #447ff5;
}
#done:active {
background-color: #2a4b8d;
border-color: #2a4b8d;
}
#done:focus {
box-shadow: inset 0 0 0 1px #36c, inset 0 0 0 2px #fff;
outline: none;
}
#done:disabled {
background-color: #c8ccd1;
border-color: #c8ccd1;
cursor: not-allowed;
}
@media screen and (min-width: 1200px) {
#compare {
column-count: 2;
column-gap: 1rem;
}
#compare > div {
display: inline-block;
width: 100%;
}
}
@media screen and (max-width: 720px) {
.cm-content {
font-size: 16px;
}
}