-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
126 lines (105 loc) · 1.91 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");
/*
made by swz
*/
:root {
--back: rgba(50, 50, 50, 1);
--fore: rgba(255, 255, 255, 1);
--theme: rgb(0, 162, 255);
--bg-l: url("https://discord.com/assets/e92fcc9ab6e63c1a17e954af347a1f1d.svg");
--bg-r: url("https://discord.com/assets/7b01f72a2054561145b6dd04add417c0.svg");
}
* {
transition-duration: 0.2s;
outline: none;
border: none;
padding: 0px;
margin: 0px;
user-select: none;
}
input,
button {
color: black;
background-color: var(--fore);
width: 80vw;
max-width: 60vh;
margin: 0.25rem;
text-align: center;
border-radius: 0.3rem;
}
input:focus {
background-color: rgba(255, 255, 255, 0.8);
}
input {
height: 40px;
}
body {
background-color: var(--back);
width: 100vw;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
overflow: hidden;
}
bg1,
bg2 {
display: block;
position: fixed;
top: 0px;
left: 0px;
width: 100vw;
height: 100vh;
background-size: 60vh;
background-repeat: no-repeat;
background-position: bottom;
}
bg1 {
background-image: var(--bg-l);
background-position-x: left;
}
bg2 {
background-image: var(--bg-r);
background-position-x: right;
}
@media (max-width: 150vh) {
bg2 {
background-image: url("");
}
}
.title {
font-size: 8vw;
font-family: "Montserrat", sans-serif;
font-weight: 900;
color: white;
}
.mainWrapper {
width: fit-content;
height: fit-content;
z-index: 10;
}
button {
appearance: none;
color: var(--back);
padding: 1rem;
align-items: center;
cursor: pointer;
}
button:hover {
color: black;
background-color: var(--theme);
}
button:active {
color: black;
padding: 1.25rem;
background-color: var(--theme);
}
.designby {
position: fixed;
bottom: 0px;
right: 0px;
color: white;
font-family: "Montserrat", sans-serif;
font-weight: 100;
}