-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
109 lines (91 loc) · 1.53 KB
/
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
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
* {
box-sizing: border-box;
background-color: #1A1B21;
font-family: 'Inter', sans-serif;
color: #dedcb7;
}
body {
border: solid #000;
width: 330px;
margin: auto;
border-radius: 10px;
}
a {
text-decoration: none;
}
.info {
display: flex;
flex-direction: column;
align-items: center;
}
.info > h2 {
margin-top: 15px;
margin-bottom: 0px;
}
.info > img {
border-radius: 10px 10px 0px 0px;
}
.jobtitle {
margin-top: 5px;
color: #a0d345;
}
.links > ul {
display: flex;
justify-content: center;
margin-top: auto;
align-items: center;
padding: 0px;
list-style: none;
gap: 15px;
}
button {
border-radius: 5px;
width: 115px;
padding: 5px 10px;
}
.mail {
display: flex;
align-items: center;
gap: 5px;
background-color: #FFF;
color: #000;
}
.mail > img {
background-color: #FFF;
}
.linkedin {
display: flex;
align-items: center;
gap: 5px;
background-color: #5093E2;
color: #000;
}
.linkedin > img {
background-color: #5093E2;
width: 25px;
}
.about {
display: flex;
flex-direction: column;
width: 317px;
padding: 0px 20px;
}
.interests {
display: flex;
flex-direction: column;
width: 317px;
padding: 20px;
}
footer {
height: 60px;
background-color: #262230;
margin: auto;
width: 317px;
border-radius: 0px 0px 10px 10px;
display: flex;
align-items: center;
justify-content: space-around;
}
footer > a > img {
background-color: #918E9B;;
}