-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.css
More file actions
40 lines (33 loc) · 821 Bytes
/
app.css
File metadata and controls
40 lines (33 loc) · 821 Bytes
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
/* The animation code */
@keyframes spin_it {
0% {transform: rotate(0deg);}
100% {transform: rotate(360deg);}
}
/* The element to apply the animation to */
#table_spinner {
height: 200px; width: 200px;
position: relative;
animation-name: spin_it;
animation-duration: 1s;
animation-iteration-count: infinite;
}
.large-text-content td {
max-width:20em;
overflow: hidden;
text-overflow: ellipsis;
height:28px; word-wrap:break-word;
white-space: nowrap;
}
#custom_site_input_textarea{
font-size:.8rem;
width:100%;
}
.selectize-input{
height:6rem !important;
overflow-y: scroll !important;
}
#select_delimiter{
color:'red' !important;
font-family: times, serif !important;
font-weight: 1000 !important;
}