blob: d4f5a4b4ef942462752355236dcf2403ff2bf525 (
plain) (
blame)
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
|
/* Can you tell I like flexbox? */
html {
--background-primary: rgb(22, 23, 25);
--background-secondary: rgb(15, 16, 18);
--foreground-primary: rgb(200, 200, 200);
--background-login-discord: #5865F2;
background: url("https://slowcord.maddy.k.vu/assets/background.png");
background-size: 100% 100%;
background-repeat: no-repeat;
font-family: 'Montserrat', sans-serif;
color: var(--foreground-primary);
}
* {
margin: 0;
padding: 0;
}
.content {
display: flex;
width: 100vw;
height: 100vh;
justify-content: flex-start;
align-items: center;
}
.login {
height: 100%;
width: 25%;
min-width: 400px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: var(--background-primary);
padding: 0 50px 0 50px;
}
.header {
margin: 40px;
width: 100%;
text-align: center;
display: flex;
flex-direction: column;
justify-content: center;
}
.header-subtext {
text-align: center;
}
.header-subtext a, .header-subtext p {
display: inline-block;
margin: 0 10px 0 10px;
}
a {
color: var(--foreground-primary);
}
form {
display: flex;
flex-direction: column;
justify-content: center;
width: 100%;
min-height: 50%;
}
input,
form a {
background-color: var(--background-secondary);
padding: 10px;
margin: 5px 0 5px 0;
outline: none;
border: 1px solid grey;
color: var(--foreground-primary);
text-decoration: none;
cursor: pointer;
}
form a {
text-align: center;
}
label {
text-transform: uppercase;
font-size: 0.75rem;
font-weight: bold;
}
#loginDiscord {
background-color: var(--background-login-discord);
}
#failure {
width: 100%;
margin-top: 10px;
color: rgb(200, 20, 20);
display: none;
}
.h-captcha {
display: flex;
justify-content: center;
margin-top: 10px;
}
|