-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
129 lines (110 loc) · 1.99 KB
/
Copy pathstyle.css
File metadata and controls
129 lines (110 loc) · 1.99 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
line-height: normal;
}
:root {
/* fonts */
--font-nunito-sans: "Nunito Sans";
--font-outfit: Outfit;
/* font sizes */
--font-size-xl: 20px;
/* Colors */
--color-white: #fff;
--color-black: #000;
--color-forestgreen-100: #4caf50;
--color-forestgreen-200: rgba(76, 175, 80, 0.1);
--color-mainheading: #143A4B;
--color-para: #7E7E7E;
/* Border radiuses */
--br-3xs: 10px;
}
body {
height: 100vh;
width: 100%;
background-color: var(--color-white);
display: flex;
flex-direction: column;
text-align: center;
}
.container {
height: 90vh;
width: 90%;
margin: auto;
background: var(--color-white);
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
/* backdrop-filter: blur(5px); */
border: 1px solid rgba(255, 255, 255, 0.3);
border-radius: var(--br-3xs);
padding: 10px;
}
h1 {
color: var(--color-mainheading);
font-family: var(--font-nunito-sans);
font-size: 36px;
margin-top: 10px;
}
p {
color: var(--color-para);
font-family: var(--font-outfit);
font-size: 24px;
margin-top: 20px;
}
form {
max-width: 340px;
margin: auto;
}
h2 {
color: #4A4A4A;
font-family: var(--font-outfit);
font-size: 50px;
margin-top: 10px;
}
.input-fields {
display: flex;
flex-direction: column;
}
form input {
background-color: #EDF7EE;
border: 4px solid var(--color-forestgreen-100);
border-radius: 15px;
outline: none;
color: #000;
font-size: 1.5rem;
padding: 5px;
width: 340px;
}
.input-fields label {
font-family: var(--font-outfit);
color: #000;
font-size: 18px;
text-align: left;
user-select: none;
}
#signin {
width: 340px;
height: 45px;
background-color: #4CAF50;
outline: none;
border: none;
border-radius: 25px;
color: #fff;
cursor: pointer;
font-size: medium;
}
#signin:hover {
background-color: rgba(76, 175, 80, 0.8);
transition: 0.5s;
}
.form-header {
height: 100px;
}
.form-body {
height: 183px;
}
.form-footer {
height: 183px;
}