-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
106 lines (90 loc) · 1.38 KB
/
index.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
body {
background-color: #2c4875;
font-family: "Poppins";
color: #fff;
margin: 0;
margin-bottom: 0;
}
a {
color: #fff;
text-decoration: none;
}
ul {
list-style: none;
}
section {
padding: 1rem;
}
section.hello {
background: black;
height: 400px;
display: flex;
justify-content: center;
align-items: center;
background-image: url("img/3d-space-scene.jpg");
background-size: cover;
background-position: center;
}
section.profile {
display: flex;
justify-content: center;
}
.name {
font-weight: bold;
color: #fad02c;
}
.text-contact {
font-weight: bold;
color: #fad02c;
}
.menu {
display: flex;
margin-right: 60px;
color: white;
justify-content: space-between;
}
.logo {
margin-right: 200px;
}
.profile-picture {
border-radius: 100%;
}
.profile-intro {
background: hsl(0, 0%, 20%);
padding: 1rem;
max-width: 600px;
}
section.tools {
margin-top: 200px;
width: 50px;
}
.tool-items {
width: 50px;
height: 50px;
margin: 60px;
display: flex;
flex-direction: row;
gap: 50px;
flex: wrap;
}
section.contact {
margin-top: 200px;
width: 500px;
height: 500px;
display: flex;
flex-direction: row;
gap: 50px;
border: 2px solid #000;
padding-right: 850px;
}
.social-media {
width: 50px;
height: 50px;
margin: 60px;
}
.copyright {
background-color: #393e46;
padding: 20px;
text-align: center;
margin: 0;
}