-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustom.css
73 lines (69 loc) · 1.16 KB
/
custom.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
a, a:active {
text-decoration: none;
}
.font-weight-normal {
font-weight: 600!important;
}
.card {
box-shadow: 0 10px 20px #eee, 0 6px 6px #d5d5d5;
}
.display-4 {
font-size: 3rem;
}
.text-muted {
color: #a6add0!important;
}
/* header */
.sticky-top {
background: #fff;
box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.28);
}
.header-link {
color: #122A9A;
}
.header-link:hover {
color: #35B8BE;
text-decoration: none;
}
.header-box {
background: #122A9A;
}
/* content */
.btn-yt {
background-color: #d61e1e;
color: #fff;
}
.btn-code {
background-color: #6b6868;
color: #fff;
}
.btn-yt:hover, .btn-code:hover {
color: #fff;
}
.filterDiv {
display: none;
}
.show {
display: block;
}
#myBtnContainer > .btn {
border: none;
border-radius: 5px;
outline: none;
padding: 12px 16px;
background-color: #f1f1f1;
cursor: pointer;
}
#myBtnContainer > .btn:hover {
background-color: #ddd;
}
#myBtnContainer > .btn.active {
background-color: #666;
color: #fff;
}
/* media */
@media (max-width: 500px) {
.display-4 {
font-size: 2rem;
}
}