-
Notifications
You must be signed in to change notification settings - Fork 0
/
matrix.css
137 lines (128 loc) · 2.72 KB
/
matrix.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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
* {
font-weight: 400;
}
.share-tech-mono-regular {
font-family: "Share Tech Mono", monospace;
font-weight: 400;
font-style: normal;
}
.hero{
width: 100%;
height: 100%;
background-image: linear-gradient(rgba(39, 0, 214, 0.8)),(rgba(187, 3, 33, 0.8));
position: relative;
padding: 0;
align-items: center;
justify-content: center;
}
.content{
text-align: center;
margin-bottom: 25px;
position: relative;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.content h1{
color: white;
font-weight: bold;
transition: 1s;
margin: 0;
font-weight: 400;
max-width: 650px;
border: 15px solid;
border-image-source: url(/img/plus.png);
}
.content h1:hover{
-webkit-text-stroke: 3px #fff;
color: transparent;
}
.back-video{
position: fixed;
inset: 0;
z-index: -1;
border: none;
}
/* .button{
padding: 10px;
font-size: 1.2em;
border: 15px solid transparent;
background-color: rgba(0, 0, 0, 0);
color: white;
font-weight: 400;
transition: 1s;
cursor: pointer;
margin: 0;
}
.button:hover{
color: gray;
border: 15px solid #fff;
border-image-source: url(/img/plus.png);
} */
.text{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 0px 10px 25px 10px;
margin: 0;
background-color: rgba(0, 0, 0, 0.5);
font-weight: 400;
}
.para{
font-size: 18px;
text-align: left;
margin: 0;
font-weight: 400;
}
h2{
font-weight: 400;
justify-content: center;
align-items: center;
display: flex;
margin: 0;
color: #fff;
font-size: 2.5em;
}
/* For WebKit browsers (Chrome, Safari) */
::-webkit-scrollbar {
width: 8px; /* Adjust the width as needed */
height: 8px; /* Adjust the height as needed */
}
::-webkit-scrollbar-track {
background: transparent; /* You can change this to any color or keep it transparent */
}
::-webkit-scrollbar-thumb {
background-color: white; /* Color of the scrollbar thumb */
border-radius: 0px; /* Round edges */
border: 2px solid transparent; /* Space around thumb */
}
/* For Firefox */
html {
scrollbar-width: thin; /* Makes the scrollbar thinner */
scrollbar-color: white transparent; /* Scrollbar thumb color and track color */
}
/* Optional: For more customization in Firefox */
body {
scrollbar-width: thin;
scrollbar-color: white transparent;
}
@media (min-aspect-ratio: 16/9){
.back-video{
width: 100%;
height: auto;
}
.content h1 {
font-size: 6em;
}
}
@media (max-aspect-ratio: 16/9){
.back-video{
width: auto;
height: 100%;
}
.content h1 {
font-size: 4em;
}
}