-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
71 lines (63 loc) · 1.19 KB
/
index.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
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.container {
padding: 2rem;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
border-radius: 8px;
max-width: 600px;
max-height: 600px;
width: 100%;
}
h2 {
display: flex;
margin-bottom: 1rem;
font-size: 2rem;
> span {
color: var(--primary-green);
}
}
input {
width: 100%;
padding: 1rem;
font-size: 1rem;
color: var(--text-color);
margin: 8px 0;
border-radius: .5rem;
border: 1px solid var(--text-color);
background-color: initial;
transition: all .2s ease;
&:focus {
border: 1px solid var(--primary-green);
outline: 1px solid var(--primary-green);
}
}
button {
width: 100%;
padding: 1rem;
font-size: 1rem;
background-color: var(--primary-green);
border: none;
border-radius: .5rem;
cursor: pointer;
a {
color: white;
}
transition: all .2s ease;
}
button:hover {
background-color: #407c40;
}
.toggle {
text-align: center;
margin-top: 20px;
}
.toggle a {
color: var(--primary-green);
text-decoration: none;
font-weight: 700;
}