-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
133 lines (113 loc) · 2.34 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
/* Textarea input */
#text {
font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;
}
/* Text input */
.form-control {
border: 1px solid #cbd5e0;
border-radius: .25rem;
box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
}
.form-control:focus {
border-color: #63b3ed;
box-shadow: 0 0 0 0.2rem rgba(99, 179, 237, .25);
outline: none;
}
@media (min-width: 640px) {
.form-control {
font-size: .875rem;
}
}
/* Select input */
.form-select {
position: relative;
width: 100%;
cursor: default;
border-radius: .25rem;
background-color: #ffffff;
text-align: left;
color: #2d3748;
box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
border: 1px solid #cbd5e0;
}
.form-select:focus {
outline: none;
border-color: #63b3ed;
box-shadow: 0 0 0 0.2rem rgba(99, 179, 237, .25);
}
@media (min-width: 640px) {
.form-select {
font-size: .875rem;
line-height: 1.5;
}
}
/* Radio button and checkbox */
.form-check-input:checked {
background-color: #63b3ed;
border-color: #63b3ed;
}
.form-check-input:focus {
box-shadow: 0 0 0 0.25rem rgba(99, 179, 237, .5);
}
/* Button */
.custom-btn-primary {
background-color: #0ea5e9;
border-color: #0ea5e9;
color: #ffffff;
font-weight: bold;
padding: .5rem 1rem;
border-radius: .25rem;
box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
}
.custom-btn-primary:hover {
background-color: #0284c7;
border-color: #0284c7;
color: #ffffff;
}
:not(.btn-check)+.btn:active {
background-color: #0369a1;
border-color: #0369a1;
}
.custom-btn-outline {
background-color: #ffffff;
color: #2d3748;
padding: .5rem 1rem;
border: 1px solid #cbd5e0;
border-radius: .25rem;
box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
}
.custom-btn-outline:hover {
border-color: #63b3ed;
background-color: #f7fafc;
color: #2d3748;
}
.btn:first-child:active {
background-color: #0ea5e9;
border-color: #0ea5e9;
}
/* Link */
a {
transition: all 0.1s;
color: #718096;
}
a:hover {
transform: translateX(2px);
color: #2D3748;
}
/* Angles diagram */
#angles line,
#angles path,
#angles circle {
stroke: #666;
}
#angles text {
fill: #333;
font-size: 10px;
}
#angles path.drag {
fill: #666;
cursor: move;
}
#angles {
text-align: center;
}