-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
100 lines (87 loc) · 1.81 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
:root {
--login-primary-color: #3a68b7;
}
body {
margin: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background-color: var(--login-primary-color);
font-family: "Roboto", sans-serif;
}
.form {
width: 80%;
max-width: 32rem;
/* background-color: white; */
/* outline: 10px solid rgba(0,0,0, 0.5); */
background-image: linear-gradient(to right,
rgba(0, 0, 0, 0.3) 0.5rem,
white 0.5rem);
}
.form__fieldset {
border: none;
display: flex;
flex-direction: column;
gap: 0.25em;
padding: 2rem;
}
.form__title {
font-weight: 300;
font-size: 2rem;
color: var(--login-primary-color);
padding-top: 2rem;
}
.form__label {
font-size: 0.8rem;
text-transform: uppercase;
font-weight: 300;
}
.form__input {
padding: 0.5em 0;
font-size: 1.2rem;
border-radius: 0;
border: none;
border-bottom: 1px solid var(--login-primary-color);
margin-bottom: 0.8rem;
outline: none;
transition: padding-left 0.08s ease;
}
.form__input:focus {
outline: 2px solid var(--login-primary-color);
padding-left: 0.3rem;
}
.btn {
text-transform: uppercase;
font-size: 1rem;
border-radius: 3px;
border: none;
outline: none;
padding: 0.8rem 1.2rem;
text-decoration: none;
font-weight: 600;
letter-spacing: 1px;
}
.btn-primary {
background-color: var(--login-primary-color);
color: white;
}
.btn-secondary {
color: var(--login-primary-color);
}
.form__action {
display: flex;
align-items: center;
flex-wrap: wrap;
}
.form__action__aside {
font-size: 0.85rem;
flex-grow: 1;
text-align: right;
text-decoration: none;
color: #999;
}
.form__action__link {
text-decoration: inherit;
color: inherit;
}