-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
45 lines (44 loc) · 747 Bytes
/
Copy pathstyle.css
File metadata and controls
45 lines (44 loc) · 747 Bytes
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
*{
margin: 0px;
}
#forms{
background-color: rgba(173, 173, 173, 0.264);
backdrop-filter: blur(10px);
border-radius: 10px;
max-width: 400px;
margin: 100px auto 0;
}
#login-or-sign-up{
display: flex;
}
#get-login{
border-right: 2px solid black;
padding: 10px 0;
width:50%;
text-align: center;
}
#get-sign-up{
border-bottom: 2px solid black;
background-color: rgba(55, 55, 55, 0.688);
padding: 10px 0;
width: 50%;
text-align: center;
}
#login-signup-alert{
margin-left: 30px;
}
#login-form{
text-align: center;
padding: 20px;
}
#sign-up-form{
text-align: center;
padding: 20px;
display: none;
}
input{
margin: 10px 0;
}
#log-out-button{
display: none;
}