-
Notifications
You must be signed in to change notification settings - Fork 2
/
styles.css
92 lines (92 loc) · 1.66 KB
/
styles.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
* {
font-family: Roboto, Arial;
text-align: center;
}
body {
background-size: 32px 32px;
background-image: linear-gradient(to right, rgba(204,204,204,0.25) 1px, transparent 1px), linear-gradient(to bottom, rgba(204,204,204,0.25) 1px, transparent 1px);
}
#errorAlert {
color: #f93;
border-color: #f93;
background-color: transparent;
}
.form-control {
cursor: default !important;
display: inline !important;
margin-right: 4px;
width: 160px !important;
}
::-moz-selection {
background: #999;
color: #fff;
}
::selection {
background: #999;
color: #fff;
}
svg > g > g:last-child { /*prevent flickering on google charts*/
pointer-events: none;
}
img {
user-drag: none;
user-select: none;
-moz-user-select: none;
-webkit-user-drag: none;
-webkit-user-select: none;
-ms-user-select: none;
}
#rgbIcon {
width: 48px !important;
}
.table-responsive { /*for bootstrap layouts*/
overflow-x: auto;
/*width: 90%;*/
}
tr:nth-child(odd) {
background-color: rgba(204,204,204,0.25) !important;
}
.st-btn {
background-color: #333 !important;
}
.st-logo {
display: none;
}
.text-red {
color:#933;
}
.text-green {
color:#393;
}
.text-blue {
color:#339;
}
.mjx-chtml {
display: inline !important;
}
.modal p, .modal h4, .modal li {
text-align: left !important;
}
#icon {
transition: 0.25s ease-in-out;
}
#icon.active {
transform: scale(1.25);
}
#learnLink {
width: 90% !important;
}
.close {
text-shadow: none !important;
}
label {
font-weight: bold;
}
.diagram {
/*width: 32px;*/
width: 24px;
/*border: 1px solid #333;*/
border-radius: 50%;
box-shadow: 0px 4px 0px #333;
margin-left: 4px;
}