forked from cs-pui/cs-pui.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cspui.css
206 lines (166 loc) · 3.45 KB
/
cspui.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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
p, ul, ol {
font-weight: 300;
font-size: 1em;
margin-bottom: 15px;
}
code {
font-size: 0.9em;
}
h2 {
font-weight: 400;
}
h1 {
font-weight: 500;
}
hr {
border: 0px;
border-top: 2px dotted lightgrey;
}
/* ---------- Listing Title -------*/
div.jobs h3 {
font-weight: 500;
margin-bottom: 0.25em;
margin-top: 1em;
}
div.jobs h3::before {
content: "🎓 ";
margin-right: 0.5em;
}
/* ---------- Listing Text -------*/
div.jobs p {
font-weight: 200;
font-size: 1em;
margin-bottom: 0.5em;
}
/* ---------- Listing list info -------*/
div.jobs ul {
list-style: none;
text-indent: -2.2em;
padding-left: 2em;
margin-left: 0em;
margin-top: 0.5em;
font-weight: 200;
font-size: 1em;
}
div.jobs li:first-child::before {
content: "🗓️ ";
margin-right: 1em;
}
div.jobs li:first-child strong {
background-color: #1f5ce9be;
color: white;
border-radius: 3px;
padding-left: 0.25em;
padding-right: 0.25em;
}
div.jobs li:nth-child(2)::before {
content: "🌎 ";
margin-right: 1em;
}
div.jobs li:nth-child(3)::before {
content: "👉 ";
margin-right: 1em;
}
/* --------- BUTTON CSS --------------- */
.button-job {
background-color: #e1ecf4;
border-radius: 3px;
border: 1px solid #7aa7c7;
box-shadow: rgba(255, 255, 255, .7) 0 1px 0 0 inset;
box-sizing: border-box;
color: #39739d;
cursor: pointer;
display: inline-block;
font-family: -apple-system,system-ui,"Segoe UI","Liberation Sans",sans-serif;
font-size: 13px;
font-weight: 400;
line-height: 1.15385;
margin: 0;
margin-right: 2em;
margin-bottom: 1em;
outline: none;
padding: 8px .8em;
position: relative;
text-align: center;
text-decoration: none;
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
vertical-align: baseline;
white-space: nowrap;
}
.button-job:hover,
.button-job:focus {
background-color: #b3d3ea;
color: #2c5777;
}
.button-job:focus {
box-shadow: 0 0 0 4px rgba(0, 149, 255, .15);
}
.button-job:active {
background-color: #a0c7e4;
box-shadow: none;
color: #2c5777;
}
/* --------- NOTICE CSS --------------- */
.notice {
margin: 1em 0 !important;
padding: 1em;
text-indent: initial; /* override*/
border-radius: 4px;
font-size: 0.9em;
font-weight: 300;
}
.notice ul, .notice p {
margin-bottom:0em;
}
.notice-blue {
background-color: #52acc827;
box-shadow: 0 1px 1px #31677785;
}
.notice-red {
background-color: #f48f8f58;
box-shadow: 0 1px 1px #d3d2d2;
}
/* notice-gray is used for checkbox lists */
.notice-gray {
background-color: #f3f3f3;
box-shadow: 0 1px 1px #d3d2d2;
}
.notice-gray ul{
list-style: none;
margin-left: 0em;
}
div.notice-gray li::before {
content: "✅ ";
margin-right: 1em;
}
/* --------- STYLED TABLE --------------- */
.styled-table {
border-collapse: collapse;
min-width: 400px;
/* box-shadow: 0 0 20px rgba(0, 0, 0, 0.15); */
width: 95%;
margin-left: auto;
margin-right: auto;
}
.styled-table th,
.styled-table td {
padding: 2px 15px;
font-size: 0.9em;
font-weight: 300;
}
.styled-table tbody tr {
border-bottom: 1px solid #dddddd;
}
.styled-table tbody tr a::before {
content:"🔗 "
}
.styled-table tbody tr:last-of-type {
border-bottom: 2px solid #000398;
}
div.styled-table table thead tr th {
background-color: #000398;
color: #ffffff;
text-align: left;
}