-
-
Notifications
You must be signed in to change notification settings - Fork 188
/
join.css
106 lines (92 loc) · 1.59 KB
/
join.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
.join-main-section {
display: flex;
justify-content: space-between;
align-items: center;
flex-grow: 1;
}
.join-text {
font-size: 3.5em;
font-weight: bold;
margin: 0;
}
.accent-text {
color: #BC3A80;
}
.join-form {
background-color: #202027;
width: 50vw;
max-width: 50%;
padding: 2rem 4rem;
border-radius: 20px;
}
.input-group {
margin-bottom: 2rem;
display: flex;
flex-direction: column;
}
.input-group:last-child {
margin-bottom: 0;
}
.input-group label {
font-weight: bold;
margin-bottom: .5rem;
}
.input-group input {
outline: none;
background: none;
border: 1px solid #2E3852;
font-size: 1em;
padding: .5em;
color: inherit;
border-radius: 5px;
}
.input-group input:focus {
border-color: #596da0;
}
@media (max-width: 900px) {
.join-main-section {
flex-direction: column;
justify-content: center;
}
.join-form {
width: 80vw;
max-width: inherit;
margin: 2rem 0;
}
}
.join-page-circle-1 {
position: absolute;
overflow: hidden;
width: 35vw;
height: 35vw;
bottom: 0;
left: 0;
z-index: -1;
}
.join-page-circle-1::before {
content: '';
transform: translateX(-20%);
position: absolute;
height: 100%;
width: 100%;
border-radius: 50%;
background-color: rgb(188, 58, 128, .1);
}
.join-page-circle-2 {
position: absolute;
overflow: hidden;
width: 30vw;
height: 30vw;
top: 0;
left: 20vw;
z-index: -1;
}
.join-page-circle-2::before {
content: '';
transform: translateY(-30%);
position: absolute;
height: 100%;
width: 100%;
border-radius: 50%;
background-color: rgb(52, 87, 178, .1);
}