-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresume.css
84 lines (74 loc) · 1.43 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
#resume-body {
height: 100%;
background-image: url('./images/background.png');
background-size: cover;
display:flex;
align-content:space-between;
justify-content: center;
}
img {
max-width: 200px;
border-radius: 50%;
border: 5px solid white;
display: block;
margin: 30px auto;
}
.row .col-4 {
max-width: 500px;
margin-top: 100px;
background-image: url('./images/strip.png');
background-size: cover;
background-repeat: no-repeat;
padding: 20px 20px;
text-align: center;
}
.row .col-8 {
max-width: 1000px;
margin-top: 100px;
background-color: rgb(39, 202, 202);
padding: 20px 20px;
}
ul {
list-style: none;
font-family: Montserrat;
font-weight: 500;
font-size: 20px;
color: white
}
.name {
font-family: Satisfy;
font-size: 66px;
color:white;
text-shadow:rgb(7, 7, 75) 1px 1px 10px;
background-image: linear-gradient(to bottom, white);
}
h3 {
font-family: Montserrat;
font-weight: 900;
font-size: 40px;
color: rgb(7, 7, 75);
}
p {
font-family: Montserrat;
font-weight: 500;
font-size: 20px;
color: white
}
#contact {
color:rgb(7, 7, 75);
font-size: 26px;
text-shadow: white 1px 0 10px;
font-weight: 700;
}
span #info {
color:rgb(7, 7, 75);
text-shadow: white 1px 0 10px;
}
a {
color: rgb(7, 7, 75);
}