-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
90 lines (90 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
body {
font-family: Arial;
background-color: aliceblue;
padding: 40px;
}
h1 {
font-size: 36px;
margin-bottom: 10px;
}
h2 {
font-size: 28px;
}
span {
color: gray;
}
p {
text-align: justify;
line-height: 1.5;
}
section, header{
padding: 10px 60px 20px 60px;
}
header {
display: flex;
align-items: center;
justify-content: space-between;
padding-top: 60px;
}
header ul {
list-style: none;
}
li {
margin-bottom: 10px;
}
.container {
box-shadow: 0 0 20px gray;
background-color: white;
width: 960px;
margin: 0 auto;
}
.address-icon {
width:15px;
height:15px;
background-color: blueviolet;
margin-right: 10px;
padding: 8px;
vertical-align: middle;
}
.profile-picture {
width:150px;
height:150px;
}
.circle {
border-radius: 50%;
box-shadow: 0 0 20px gray;
}
.cv-download-link {
border: 2px solid cornflowerblue;
color: cornflowerblue;
text-decoration: none;
padding: 10px 20px;
display: inline-block;
margin-top: 20px;
border-radius: 26px;
transition: background-color 0.5s, color 0.5s;
box-shadow: 0 0 20px gray;
}
.cv-download-link:hover {
color: white;
background-color: cornflowerblue;
}
.cv-download-link:focus {
outline: none;
color: white;
background-color: cornflowerblue;
}
.cv-download-link:active {
text-decoration: underline;
}
.technologies {
list-style: none;
display: flex;
flex-wrap: wrap;
}
.technologies li {
width: 25%;
}
.noListStyle {
list-style: none;
}