-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
86 lines (73 loc) · 1.17 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
80
81
82
83
84
85
86
* {
list-style: none;
text-decoration: none;
}
body {
display: flex;
flex-direction: column;
justify-content: space-between;
height: 100vh;
margin: 0;
font-family: "Roboto", sans-serif;
font-weight: 400;
font-style: normal;
}
.navbar {
display: flex;
justify-content: space-around;
align-items: center;
}
@keyframes nameAnimation {
0% {
color: #9fad0b;
}
25% {
color: #13ad0b;
}
50% {
color: #210bad;
}
75% {
color: #ad0b16;
}
100% {
color: #9fad0b;
}
}
#name {
font-size: 24px;
font-weight: 600;
animation-name: nameAnimation;
animation-duration: 3s;
animation-timing-function: linear;
animation-delay: 0ms;
animation-iteration-count: infinite;
animation-direction: normal;
animation-fill-mode: none;
animation-play-state: running;
}
.navbar h1 div {
margin: 0;
}
.links {
display: flex;
gap: 8px;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
}
.profile-image {
width: 250px;
height: 250px;
border-radius: 50%;
border: 2px solid black;
}
.objective {
font-size: 50px;
}
footer {
display: flex;
justify-content: space-around;
}