-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
80 lines (70 loc) · 1.14 KB
/
styles.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
@import url('https://fonts.googleapis.com/css?family=Montserrat');
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
background-color: #e3b9a7;
font-family: Montserrat, sans-serif;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
min-height: 100vh;
}
.card {
background-color: #5b0d2e;
border-radius: 10px;
box-shadow: 2px 4px 5px black;
color: white;
padding-top: 30px;
text-shadow: 1px 1px 2px black;
width: 300px;
max-width: 100%;
text-align: center;
}
.card img{
max-width: 150px;
}
.card .round {
border: 1px solid #ffffff;
border-radius: 50%;
padding: 7px;
}
h3 {
margin: 10px 0;
}
h6 {
margin: 5px 0;
text-transform: uppercase;
}
p {
font-size: 14px;
line-height: 21px;
}
.skills {
text-align: left;
padding: 15px;
margin-top: 10px;
display: flex;
justify-content: space-around;
align-items: center;
}
.skills a{
text-decoration: none;
color: white;
}
.links{
cursor: pointer;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.skills img {
max-width: 40px;
}
.linkedin img{
width: 50px;
}