-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
164 lines (138 loc) · 2.38 KB
/
style.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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
button{
background-color: none;
border: 1px solid black;
color: black;
padding: 8px 15px;
text-align: center;
text-decoration: none;
display: inline-block;
border-radius: 30px;
font-size: 14px;
margin: 3px 3px !important;
cursor: pointer;
}
.title {
font-size: 2.5rem !important;
font-weight: 700 !important;
}
.subtitle {
font-weight: 800 !important;
}
#selection-btn-1 {
text-align: left !important;
padding: 8px 25px;
}
#selection-btn-2 {
text-align: left !important;
padding: 8px 25px;
}
.selected{
border: 3px solid black;
padding: 6px 13px;
}
.action-step{
font-weight: 800;
}
.column.column-left {
float: left;
width: 20%;
}
.column.column-right {
float: left;
width: 80%;
}
.column.column-left.selection {
float: left;
width: 50%;
}
.column.column-right.selection {
float: left;
width: 50%;
}
.column.arrow {
float: left;
width: 50%;
background-color: none;
background-color: white !important;
}
.column.not-sure {
float: right;
align-items: right;
width: 50%;
background-color: white !important;
}
.row{
background-color: #f2f2f2;
margin-top: 0.5em;
}
/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}
.not-sure_button{
background-color: none;
border: none;
margin: 0px !important;
background-color: white;
padding: 4px !important;
font-style: italic;
float: right;
}
#next-button {
background-color: none;
border: 1px solid black !important;
margin: 0px !important;
background-color: white;
padding: 8px 15px !important;
font-style: italic;
float: right;
}
#next-button:hover {
border: 2px solid lightgreen !important;
transition: 0.2s;
padding: 7px 14px !important;
}
#model-output{
border: 1px solid lightgreen;
color: black;
padding: 10px 25px;
border-radius: 30px;
margin-left: 3em;
}
#model-output-prompt{
border: 1px solid blue;
display: inline-block;
color: black;
padding: 10px 25px;
border-radius: 30px;
margin-bottom: 0.5em;
margin-right: auto;
}
.step-explanation{
font-size: 1em;
margin-left: 1em;
}
#paper_button {
background-color: white !important;
transition: 0.2s;
font-size: 1.1em;
}
#paper_button:hover {
border-width: 3px;
transition: 0.2s;
}
#output, #style, #model, #adaptation, #output-stats {
animation: 1s fadeIn !important;
animation-fill-mode: forwards;
}
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
visibility: visible;
opacity: 1;
}
}