-
Notifications
You must be signed in to change notification settings - Fork 0
/
resumestyles.css
93 lines (80 loc) · 1.86 KB
/
resumestyles.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
body {
background-color: rgba(235, 184, 156, 0.23);
}
#banner {
position: relative;
top:5px;
width: 100%;
overflow-x: hidden;
object-fit: cover;
height: 110px;
}
#beaver {
position: absolute;
top:33px;
left:25px;
height: 70px;
border-radius: 50%;
z-index: 1;
}
ul.breadcrumb {
position: relative;
left:15px;
padding: 12px 16px;
/* list-style: none; */
background-color: #efc8c8;
border-radius: 25px;
width:fit-content;
}
/* Display list items side by side */
ul.breadcrumb li {
display: inline;
font-size: 24px;
}
/* Add a slash symbol (/) before/behind each list item */
ul.breadcrumb li+li:before {
padding: 12px;
color: black;
content: "/\00a0";
}
/* Add a color to all links inside the list */
ul.breadcrumb li a {
color: #052f54;
text-decoration: none;
}
/* Add a color on mouse-over */
ul.breadcrumb li:not(#current) a:hover {
color: #01447e;
text-decoration: underline;
padding: 5px;
border-radius: 12px;
background-color: bisque;
box-shadow: 3px 3px 6px rgb(129, 231, 148);
}
#current {
text-decoration: none;
padding: 5px;
border-radius: 12px;
background-color: bisque;
box-shadow: 3px 3px 6px rgb(129, 231, 148);
}
.text{
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
font-size: 35px;
color: #455562;
}
.resume {
width:max-content;
margin-left: auto ;
margin-right: auto ;
text-align: center;
}
#pdf {
border-style:solid;
width:1000px;
height:1300px;
overflow-y: hidden;
border-radius: 30px;
border-color: rgb(240, 198, 59);
border-width: 5px;
}