-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
47 lines (46 loc) · 897 Bytes
/
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
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
overflow: hidden;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background-color: rgb(199, 40, 40);
}
div {
width: 600px;
height: 700px;
overflow: hidden;
top: 0;
left: 0;
font-size: 1.3rem;
font-weight: bold;
text-align: center;
color: transparent;
opacity: 0.35;
-webkit-text-stroke: 1px;
background-image: url(1.png);
background-repeat: no-repeat;
background-position: center;
-webkit-background-clip: text;
letter-spacing: 1px;
position: relative;
line-height: 14pt;
}
div::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: url(1.png);
background-repeat: no-repeat;
background-position: center;
opacity: 0.05;
z-index: -1;
}