-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
159 lines (118 loc) · 2.08 KB
/
styles.css
File metadata and controls
159 lines (118 loc) · 2.08 KB
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
:root{
--color: #90EE90;
--txt: rgb(185, 185, 185)
}
*{
margin: 0px;
padding: 0px;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
color: var(--txt);
}
.sign-up {
width: 100vw;
height: 100vh;
}
.sign-up,
.logo{
display: flex;
flex-flow: row wrap;
}
.picture{
background-image: url(./halie-west-25xggax4bSA-unsplash.jpg);
background-position: center;
background-size: auto;
background-repeat: no-repeat;
width: 40vw;
}
.logo{
height: auto;
background-color: rgba(0, 0, 0, 0.7);
position: relative;
top: 20vh;
gap: 1vw;
padding: 15px 0;
justify-content: center;
align-items: center;
}
h1{
color: white;
}
.deer {
height: 10vh;
}
.right{
width: 60vw;
background-color: #000000;
display: flex;
flex-flow: column nowrap;
justify-content: center;
}
.left{
padding-left: 3vw;
}
.dummy-text{
font-weight: 500;
width: 90%;
font-size: 1.2rem;
}
.remote-text{
margin: 40px 0 80px;
}
.form{
background-color: rgb(6, 6, 6);
box-shadow: 0 10px 20px -2px rgb(22, 22, 22);
display: flex;
flex-flow: row wrap;
gap: 20px;
padding-top: 20px;
padding-bottom: 20px;
}
.input{
display: flex;
flex-flow: column wrap;
width: 40%;
font-size: 0.7rem;
text-transform: uppercase;
opacity: 50%;
}
.form-title{
width: 100%;
font-size: 1.2rem;
font-weight: 500;
}
input{
background-color: rgb(2, 2, 2);
border: 1px solid rgb(77, 77, 77);
border-radius: 3px;
}
input:focus{
outline: none;
border: 2px solid var(--color);
}
button{
background-color: rgba(0, 0, 0, 0);
color: var(--color);
font-weight: 700;
font-size: 1.2em;
border: 2px solid var(--color);
border-radius: 5px;
padding: 10px 40px;
margin: 40px 0;
}
button:hover{
background-color: var(--color);
color: black;
}
.log-in{
display: flex;
gap: 5px;
}
a{
text-decoration: none;
color: var(--color);
font-weight: 700;
}
a:hover{
color: white;
}