-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
96 lines (88 loc) · 1.62 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
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300);
* {
font-family: "Open Sans", sans-serif;
}
body {
margin: 0;
padding: 0;
overflow: hidden;
background: #111;
background-repeat: no-repeat;
}
.signupSection {
background: url(https://source.unsplash.com/TV2gg2kZD1o/1600x800);
background-repeat: no-repeat;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 800px;
height: 750px;
text-align: center;
display: flex;
color: white;
box-shadow: 3px 10px 20px 5px rgba(0, 0, 0, 0.5);
}
.info {
width: 45%;
background: rgba(20, 20, 20, 0.8);
padding: 30px 0;
border-right: 5px solid rgba(30, 30, 30, 0.8);
}
.info h2 {
padding-top: 30px;
font-weight: 300;
}
.info p {
font-size: 18px;
}
.info .icon {
font-size: 8em;
padding: 20px 0;
max-width: 250px;
}
.signupForm {
width: 70%;
padding: 30px 0;
background: rgba(20, 40, 40, 0.8);
transition: 0.2s;
}
.signupForm h2 {
font-weight: 300;
}
.inputFields {
margin: 15px 0;
font-size: 16px;
padding: 10px;
width: 210px;
border: 1px solid #0ab4b4;
border-top: none;
border-left: none;
border-right: none;
background: rgba(20, 20, 20, 0.2);
color: white;
outline: none;
}
.noBullet {
list-style-type: none;
padding: 0;
}
#join-btn {
border: 1px solid #0ab4b4;
background: rgba(20, 20, 20, 0.6);
font-size: 18px;
color: white;
margin-top: 20px;
padding: 10px 50px;
cursor: pointer;
transition: 0.4s;
}
#join-btn:hover {
background: rgba(20, 20, 20, 0.8);
padding: 10px 80px;
}
.resultClass{
color: #0ab4b4;
font-size: 21px;
font-weight: 900;
}