-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
102 lines (86 loc) · 1.96 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
body{
color: rgb(238, 238, 238);
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
margin: 0;
background: repeating-linear-gradient(to right, #2d2a44 0 1px, transparent 2px 200px) ,
repeating-linear-gradient(to bottom, #2d2a44 0 1px, transparent 2px 200px ) ,
radial-gradient(#192227, #e8ccfa) ;
}
::-webkit-scrollbar{
width: 0;
}
*{
padding: 0;
margin: 0;
box-sizing: border-box;
list-style: none;
}
header img{
width: 30px;
}
header{
width: min(1500px, 90vw);
margin: auto;
height: 70px;
display: flex;
justify-content: space-between;
align-items: center;
}
header nav ul{
display: flex;
gap: 30px;
}
main .banner{
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 20px;
text-align: center;
margin-top: -70px ;
}
h1,h2,h3,h4,h5,h6{
font-weight: 500 ;
}
.banner button{
all: unset;
border: 1px solid #afaeae55;
padding: 10px 20px;
border-radius: 20px;
background-image: linear-gradient(
to bottom, rgba(238, 238, 238, 0.068), transparent, rgba(238, 238, 238, 0.067)
);
cursor: pointer;
transition: 0.5s;
}
.banner button:hover{
background-color: #c691e6;
color: #040018;
box-shadow: 0 0 50px #c691e6;
}
h1{
--to: left;
font-size: 4em;
font-weight: bold;
background-image: linear-gradient(to var(--to), #CCE8CC, #F6EFEE, #E2B6CF , #E396DF, #E365C1);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
text-transform: uppercase;
line-height: 1em;
}
h1.right{
--to: right;
}
.banner{
position: relative;
}
.banner #dotsCanvas {
position: absolute;
background-color: transparent;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
}