forked from episphere/quest
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Quest.css
140 lines (112 loc) · 2.29 KB
/
Quest.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville&display=swap');
#navBar {
background-color: rgb(53 58 64);
color: rgb(197 199 202);
border-bottom: 5px solid rgb(154 160 173);
border-top: 5px solid rgb(154 160 173);
background: linear-gradient(to right, #24305e, lightblue);
font-family: "Archivo";
width: 100%;
/* font-weight: bold; */
}
.quest-bg-gradient{
background-color: transparent;
background-image: linear-gradient(to right, #24305e, lightblue);
border-top: 5px solid rgb(154 160 173);
border-bottom: 5px solid rgb(154 160 173);
}
#navLinks {
padding-left: 50px;
/* background-color: rgb(53 58 64); */
}
#navLinks a {
color: rgb(154 160 173);
font-size: 20px;
}
body {
background-color: rgb(245 245 246);
}
#legendDiv {
background-color: rgb(245 245 246);
}
#loadDisplay {
height: 3em;
font-size: smaller;
}
input[type="checkbox"].form-check-input{
display: inline;
}
#markupTextArea {
background-color: #f7f9fb;
font-family: monospace;
color: navy;
height: 600px;
width: 100%;
}
#rendering {
width: 100%;
background-color: re;
}
.question > label {
display: inline;
width: 95% !important;
font-size: 1em;
}
.popover-dismiss {
background: linear-gradient(
rgb(240, 173, 78),
rgb(240, 173, 78)
) !important;
border: 1px solid rgb(175, 175, 175) !important;
padding-top: 3px !important;
padding-bottom: 3px !important;
}
.text-baskerville {
font-family: 'Libre Baskerville', serif;
background-color: transparent;
}
@media only screen and (max-width: 768px) {
input[type="number"] {
width: 150px;
}
[id="markup"] {
position: sticky;
}
[id="navLinks"] {
background-color: #24305e;
}
[id="fontSpan"] {
float: left !important;
margin-top: 5px;
}
[id="renderText"] {
margin-top: 15px;
}
.spacePadding {
height: 50px;
}
}
@media only screen and (max-width: 1024px) {
[id="markup"] {
position: sticky;
}
[id="navLinks"] {
background-color: #24305e;
}
[id="prevResDiv"] {
border: 1px solid black !important;
}
[id="stylingDiv"] {
border: 1px solid black !important;
}
[id="fontSpan"] {
float: left !important;
margin-top: 5px;
}
[id="renderText"] {
margin-top: 15px;
}
.spacePadding {
height: 50px;
}
}