-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
77 lines (77 loc) · 1.63 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
:root {
--bg: #000;
--bgOverlay: rgba(0,0,0,0.7);
--midColor: #303030;
--color: white;
--colorIn: black;
}
/* reflection */
.units > :last-child {
transform: rotatex(180deg) translatey(15px);
mask-image: linear-gradient(transparent 50%, white 90%);
-webkit-mask-image: linear-gradient(transparent 50%, white 90%);
}
/* original design */
.units > * {
font: bolder 10rem/10rem "EB Garamond";
background-image: url("/dapchat/forest.jpg");
background-clip: text;
-webkit-background-clip: text;
color: transparent;
}
.units {
width: max-content;
user-select: none;
-moz-user-select: none;
-webkit-user-select: none;
pointer-events: none;
padding: 0 10px;
display: inline-block;
/* box-shadow: 0px 0px 10px 1px rgba(255,255,255,0.5); */
}
body {
background: url("/dapchat/mapleplus.jpg") no-repeat center center;
background-size: cover;
text-align: center;
margin-top: calc(50vh - 15rem);
width:100vw;
height:100vh;
overflow-x:hidden;
margin:0;
padding:0;
}
.bg {
background: url("/dapchat/newlogo.jpg") no-repeat center center;
background-size: cover;
width:100%;
height:100%;
z-index:0;
position:absolute;
top:0;
left:0;
opacity:0.2;
}
.button {
position:absolute;
bottom:20px;
left:50%;
transform:translateX(-50%);
border-radius:20px;
padding:20px 15px;
background:url("/dapchat/forest.jpg") no-repeat center center;
color:white;
font-size:45px;
cursor:pointer;
font-weight:bold;
box-shadow: 0px 0px 10px 1px rgba(0, 204, 255, 0.4);
transition:0.2s linear;
}
.button:hover {
opacity:0.6;
}
video {
width:75%;
height:auto;
display:block;
margin:auto;
}