-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
66 lines (56 loc) · 850 Bytes
/
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
.sidebar {
width: 400px;
height: 100vh;
position: fixed;
background-color: #2b3031;
display: flex;
justify-content: center;
align-items: center;
}
.content {
margin-left: 400px;
padding-top: 100px;
}
.logo {
max-height: 200px;
padding-bottom: 20px;
max-width: 100%;
}
.sidebar i.bi {
margin-right: 10px;
}
#scroll-to-top {
display: none;
font-size: xx-large;
z-index: 999;
}
div.card-img-top {
height: 100px;
background-size: cover;
background-repeat: no-repeat;
}
#skills .progress {
height: 3px;
max-width: 200px;
margin: auto;
}
#year {
width: fit-content;
}
@media screen and (max-width: 1000px) {
.sidebar {
width: 100%;
height: auto;
position: relative;
}
.content {
margin-left: inherit;
padding-top: 0;
}
#scroll-to-top {
display: block;
position: fixed;
right: 20px;
bottom: 20px;
}
}