-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathstyle-about-page.css
121 lines (106 loc) · 2.13 KB
/
style-about-page.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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;700&display=swap');
.full-about-page {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
width: 100vw;
background-color: #000615;
overflow-x: hidden;
}
.interior-box {
display: flex;
flex-direction: column;
width: 70vw;
height: 70vh;
justify-content: center;
font-family: 'DM Sans', sans-serif;
font-size: 2.2vh;
color: white;
background-color: #040A29;
border-radius: 24px;
overflow: hidden;
position: relative;
transform-style: preserve-3d;
transition: transform 0.3s ease-out;
}
.about-paragraph {
margin-top: 3%;
padding-left: 7vw;
padding-right: 7vw;
}
.about-heading {
font-weight: 900;
background: linear-gradient(90deg, #00FFF0, #03C60B, red);
font-size: 6.6vh;
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
padding-left: 7vw;
padding-right: 7vw;
}
.pink1 {
filter: blur(100px);
}
#pnk1 {
position: absolute;
left: -3vw;
bottom: -30vh;
}
.pink2 {
filter: blur(100px);
}
#pnk2 {
position: absolute;
right: -3vw;
top: -55vh;
}
@media (max-width: 768px) {
.pink1 {
filter: blur(100px);
}
#pnk1 {
position: absolute;
left: -22vw;
bottom: -31vh;
}
.pink2 {
filter: blur(100px);
}
#pnk2 {
position: absolute;
right: -24vw;
top: -73vh;
}
.about-heading {
font-weight: 900;
background: linear-gradient(90deg, #00FFF0, #03C60B);
font-size: 3.6vh;
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
padding-left: 7vw;
padding-right: 7vw;
}
.interior-box {
display: flex;
flex-direction: column;
width: 70vw;
height: 70vh;
justify-content: center;
font-family: 'DM Sans', sans-serif;
font-size: 1.5vh;
color: white;
background-color: #040A29;
border-radius: 24px;
overflow: hidden;
position: relative;
transform-style: preserve-3d;
transition: transform 0.3s ease-out;
}
.about-paragraph {
margin-top: 20%;
padding-left: 7vw;
padding-right: 7vw;
}
}