-
Notifications
You must be signed in to change notification settings - Fork 0
/
lobby.css
64 lines (53 loc) · 1.08 KB
/
lobby.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
body{
background: linear-gradient(to right,rgba(73, 73, 173, 0.582),rgba(165, 56, 56, 0.588));
color: #fff;
}
#form-container{
width: 90%;
max-width: 600px;
border-radius: 10px;
background-color: #262625;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
#form__container__header {
border-radius: 10px 10px 0 0;
padding: 30px;
text-align: center;
background-color: #363739;
margin: 0;
font-size: 18px;
font-size: 300;
line-height: 0;
}
#form__content__wrapper{
padding: 20px;
}
input {
box-sizing: border-box;
color: #fff;
width: 100%;
margin: 0;
border: none;
border-radius: 5px;
padding: 16px 20px;
font-size: 15px;
background-color: #3f434a;
margin-top: 32px;
}
input[type='submit'] {
background-color: #845695;
}
.footer {
font-size: 14px;
display: flex;
align-items: center;
justify-content: flex-start;
margin: 0 60px;
margin-top: 7vw;
text-transform: uppercase;
font-weight: 500;
text-shadow: 3px 3px 10px #262625;
}