-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.css
107 lines (101 loc) · 2.31 KB
/
about.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
107
* {
box-sizing: border-box;
padding: 0;
margin: 0;
}
body {
min-height: 100vh;
background: url(space.jpg) no-repeat;
background-size: cover;
background-position: center;
}
h3, h1 {
text-align: center;
background-image: linear-gradient(to right, #ffffff 0%, #7b7b7b 100%);
font-weight: 700;
font-size: 40px;
margin-bottom: 20px;
margin-top: 20px;
text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
-moz-background-clip: text;
transition: all 0.5s ease-in-out;
}
h1:hover {
background-image: linear-gradient( 90deg, rgb(255, 87, 252) 0%, rgb(255, 154, 247) 25%, rgb(255, 0, 212) 50%, rgb(0, 64, 255) 75%, rgb(233, 136, 255) 100% );
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
transform:scale(1.1);
}
h3:hover {
background-image: linear-gradient( 90deg, rgb(255, 87, 252) 0%, rgb(255, 154, 247) 25%, rgb(255, 0, 212) 50%, rgb(0, 64, 255) 75%, rgb(233, 136, 255) 100% );
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
transform:scale(1.1);
}
.card {
margin-right: auto;
margin-left: auto;
width: 700px;
box-shadow: 0 15px 25px rgba(80, 80, 80, 0.2);
height: 700px;
border-radius: 5px;
backdrop-filter: blur(10px);
background-color: rgba(255, 255, 255, 0.099);
padding: 10px;
text-align: center;
}
.card img {
height: 60%;
}
.header {
top: 0;
left: 0;
width: 100%;
padding: 20px 100px;
background: transparent;
backdrop-filter: blur(10px);
display: flex;
justify-content: space-between;
align-items: center;
z-index: 100;
}
.logo {
font-size: 32px;
color: #fff;
text-decoration: none;
font-weight: 700;
}
.navbar a {
position: relative;
font-size: 18px;
font-weight: 500;
color: #fff;
text-decoration: none;
margin-left: 40px;
}
.navbar a::before {
content: '';
position: absolute;
left: 0;
top: 100%;
width: 0%;
height: 2px;
background: #fff;
transition: .3s;
}
.navbar a:hover::before {
width: 100%;
}
.card img {
width:4em;
height:4em;
cursor:pointer;
transition: .5s;
}
.card img:hover {
width:6em;
height:6em;
transition: .5s;
}