-
Notifications
You must be signed in to change notification settings - Fork 0
/
starter-template.css
120 lines (92 loc) · 2.07 KB
/
starter-template.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
body {
padding-top: 5rem;
font-family: "DM Sans", sans-serif;
}
.starter-template {
padding: 3rem 1.5rem;
text-align: center;
}
section.resume-section{border-bottom:1px solid #dee2e6;padding-top:2rem!important;padding-bottom:5rem!important}
.collapsible-soon {
background-color: white;
border: none;
color: black;
width: 100%;
text-align: left;
outline: none;
font-size: 15px;
white-space: normal;
}
.collapsible {
background-color: white;
color: black;
cursor: pointer;
width: 100%;
text-align: left;
outline: none;
font-size: 15px;
white-space: normal;
}
/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .collapsible:hover {
background-color: white;
border-color: #AEB6BF;
border-width: 2pt;
}
/* Style the collapsible content. Note: hidden by default */
.content {
padding: 0 18px;
display: none;
overflow: hidden;
background-color: #f1f1f1;
}
.card-header {
background-color: white;
}
.card-body {
text-align:justify;
font-size: 12px;
}
.collapsible:after {
font-family:FontAwesome;
content: '\f078'; /* Unicode character for "plus" sign (+) */
float: right;
margin-left: 5px;
}
.active:after {
content: "\f077"; /* Unicode character for "minus" sign (-) */
}
.btn-download{
background-color: white;
color: black;
cursor: pointer;
padding: 10px;
width: 100%;
border-color: black;
border-width: 1pt;
text-align: center;
outline: none;
font-size: 15px;
}
.subheading{font-weight:500;font-size:1.35rem}
.jmp{font-weight:500;font-size:1rem}
.small_links{font-size:10pt}
.centered{
text-align:center;
}
.navbar-brand{
color: black;
}
.navbar-scrolled {
background-color: #273746; /* Replace with the desired background color when scrolled */
}
.brand-scrolled{
color: white;
}
.navbar-brand-scrolled {
color: white; /* Replace with the desired color for the brand when scrolled */
}
.coauthor{
color: black;
text-decoration: underline;
}