-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
119 lines (112 loc) · 1.72 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
* {
margin: 0;
padding: 0;
}
.container {
margin-top: 5rem;
height: 100%;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
gap: 2rem;
}
.display-container {
width: 15rem;
/* padding: 1rem; */
border-radius: 2rem;
display: flex;
justify-content: center;
background-color: darkgray;
}
.gray {
background-color: gray;
}
.darkgray {
background-color: darkgray;
}
.hide {
display: none;
}
.btn {
width: 15rem;
padding: 1rem;
border-radius: 2rem;
border: none;
transition: 0.5s;
}
.submit {
width: 15rem;
padding: 1rem;
border-radius: 2rem;
border: none;
transition: 0.5s;
}
.submit:hover {
background-color: dimgray;
cursor: pointer;
color: white;
font-weight: 600;
}
.login-container,
.signup-container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
form#login,
form#signup {
width: 15rem;
display: flex;
flex-direction: column;
justify-content: center;
gap: 2rem;
transition: 0.5s;
}
input {
height: 2rem;
border: none;
overflow: hidden;
border-bottom: 1px solid darkgray;
outline: none;
}
.checkbox-container {
display: flex;
align-items: center;
gap: 1rem;
}
span {
font-size: 0.8rem;
}
.alert {
display: flex;
justify-content: center;
align-items: center;
height: 5rem;
}
.alert-box {
width: 90%;
height: 3rem;
display: flex;
justify-content: space-between;
align-items: center;
background-color: red;
color: #fff;
}
.alert-box p {
padding: 1rem;
font-size: 1rem;
}
.alert-btn:hover {
font-weight: 600;
cursor: pointer;
transition: 0.8s;
}
.alert-btn {
padding: 1rem;
background: transparent;
border: none;
color: #fff;
}