-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
78 lines (59 loc) · 1.17 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
.content-container {
box-shadow: rgb(0, 0, 94) 0px 2px 5px -1px, rgb(0, 0, 82) 0px 1px 3px -1px;
background-image: linear-gradient(to bottom left, rgb(0, 0, 94) , 15px, transparent);
}
.main-content {
display: flex;
flex-direction: column;
gap: 15px;
}
.centre-container {
display: flex;
flex-direction: column;
align-items: center;
gap: 12px;
}
.web-url-container {
display: flex;
height: 39px;
overflow: hidden;
}
.website-url {
font-size: 2rem;
}
.hover-move-up{
transition:0.2s;
}
.inner h3 {
/*position: relative;*/
/* transform: translateY(0px); */
transition: transform .1s ease-in-out;
}
.web-url-container:hover .inner h3 {
transform: translateY(-38px);
}
.website-url-styled {
background: linear-gradient(to right, #f32170, #ff6b08, #cf23cf, #eedd44);
-webkit-text-fill-color: transparent;
background-clip: text;
-webkit-background-clip: text;
}
.hover-move-up:hover {
position: absolute;
top: -35px;
}
.profile-img {
height: 120px;
}
nav {
display: flex;
justify-content: space-evenly;
}
nav > a {
padding: 1.5%;
border: 1px solid #0070f3;
border-radius: 10px;
}
nav > a:hover{
background-color: #18181e;
}