-
Notifications
You must be signed in to change notification settings - Fork 0
/
statpagefolio_styles.css
70 lines (60 loc) · 1.43 KB
/
statpagefolio_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
/* Basic customization for elements */
#navbar-header-text {
font-size: 1.2em;
color: #FFE5B4;
}
.nav-link:hover {
color: cream !important; background-color: #4C4CAA !important;
border-radius: 8px;
}
.dropdown-item:hover {
color: whitesmoke !important; background-color: #5B5EA4 !important;
}
.project-header-link {
color: limegreen; font-size: calc(1.1em + 0.1vw);
}
.project-header-link:hover {
color: rgb(51, 237, 51); text-decoration: none;
}
/* Displayed on md and sm devices card header styling */
#image-proc-header {
font-size: 1em !important; font-weight: bold !important;
}
.btn-label {
font-size: 0.95em !important;
}
h4, h5 {
color: #f5f7e1 !important;
}
/* Additional adaptivity to the provided by Bootstrap */
/* xl breakpoint */
@media screen and (max-width: 1200px) {
#image-processing-card, #quiz-card {
width: 52vw !important;
}
#fluoscenepy-card {
width: 36vw !important;
}
}
@media screen and (min-width: 1201px) {
#image-processing-card, #quiz-card {
width: 30vw !important;
}
#fluoscenepy-card {
width: 25vw !important;
}
}
@media screen and (min-width: 1720px) {
#image-processing-card, #quiz-card {
width: 28vw !important;
}
#fluoscenepy-card {
width: 22vw !important;
}
}
/* sm breakpoint */
@media screen and (max-width: 576px) {
#project-text {
font-size: 1.1rem !important;
}
}