-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresume.css
113 lines (103 loc) · 1.75 KB
/
resume.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
:root{
--defmar: 5px;
--defpad: 5px;
--border: 2px solid black;
--color: rgba(239, 220, 212, 1);
}
*{
margin: 0px;
padding: 0px;
}
/* navbar */
nav{
position: sticky;
top: 0px;
width: 1700px;
z-index: 1;
background-color: var(--color);
display: flex;
justify-content: space-around;
align-items: center;
}
.h3{
margin: 10px;
padding: 10px;
}
.container1{
display: flex;
justify-content: space-between;
align-items: center;
}
ul{
display: flex;
justify-content: flex-start;
align-items: center;
}
ul li{
margin: 10px;
padding: 10px;
list-style: none;
}
ul li:hover{
cursor: pointer;
color: rgb(114, 84, 70);
}
/* resume */
.resume{
width: 1700px;
/* height: 717px; */
position: relative;
/* top: 197px; */
}
.bg{
width: 1700px;
height: 717px;
z-index: 0;
}
.resumeh1{
font-size: 80px;
text-align: center;
position: absolute;
top: 30px;
left: 703px;
text-decoration: underline;
}
.cta {
position: relative;
/* top: 100px; */
left: 755px;
bottom: 470px;
margin: auto;
padding: 12px 18px;
transition: all 0.2s ease;
border: none;
background: none;
cursor: pointer;
}
.cta:before {
content: "";
position: absolute;
top: 0;
left: 0;
display: block;
border-radius: 50px;
background: #b1dae7;
width: 45px;
height: 45px;
transition: all 0.3s ease;
}
.cta span {
position: relative;
/* font-family: "Ubuntu", sans-serif; */
font-size: 18px;
font-weight: 700;
letter-spacing: 0.05em;
color: #234567;
}
.cta:hover:before {
width: 100%;
background: #b1dae7;
}
.cta:active {
transform: scale(0.95);
}