-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.min.css
More file actions
83 lines (69 loc) · 1.24 KB
/
style.min.css
File metadata and controls
83 lines (69 loc) · 1.24 KB
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
*,
body {
margin: 0
}
footer,
header {
text-align: center
}
#social-links,
.auto-side-margin,
.card img {
margin-left: auto;
margin-right: auto
}
* {
padding: 0
}
:root {
--dark-blue: #2A3A47;
--grey-background: #D1D1D1;
--light-grey-background: #E3E3E3
}
body {
font: 600 20px -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
background-color: var(--grey-background)
}
header {
height: 10vh;
width: 100vw;
background-color: var(--dark-blue);
color: var(--grey-background)
}
header img {
margin-top: 1vh;
margin-left: 1vh;
float: left;
height: 8vh;
width: 8vh
}
header h1 {
margin: 0;
line-height: 10vh;
font-size: x-large
}
main {
height: 80vh;
width: 100vw;
text-align: center;
}
::-webkit-scrollbar {
width: 10px
}
#resume-info table,
.full-width,
section p table {
width: 100%
}
::-webkit-scrollbar-track {
box-shadow: inset 0 0 5px var(--light-grey-background);
border-radius: 10px
}
::-webkit-scrollbar-thumb {
background: var(--grey-background);
border-radius: 10px
}
::-webkit-scrollbar-thumb:hover {
cursor: pointer;
background: var(--dark-blue)
}