-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathstyles.css
More file actions
127 lines (109 loc) · 1.99 KB
/
Copy pathstyles.css
File metadata and controls
127 lines (109 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
line-height: normal;
}
:root {
--font-nunito-sans: "Nunito Sans";
--font-outfit: Outfit;
--color-white: #fff;
--color-black: #000;
--color-forestgreen-100: #4caf50;
--color-mainheading: #143A4B;
--color-para: #7E7E7E;
--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);
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;
user-select: none;
}
p {
color: var(--color-para);
font-family: var(--font-outfit);
font-size: 24px;
margin-top: 50px;
user-select: none;
text-align: center;
}
form {
max-width: 340px;
margin: auto;
}
h2 {
color: #4A4A4A;
font-family: var(--font-outfit);
font-size: 50px;
margin-top: 100px;
user-select: none;
}
.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: var(--color-black);
font-size: 1rem;
padding: 10px;
margin-bottom: 5px;
}
.input-fields label {
font-family: var(--font-outfit);
color: var(--color-black);
font-size: 18px;
text-align: left;
user-select: none;
margin-bottom: 5px;
}
#signin {
width: 340px;
height: 45px;
background-color: var(--color-forestgreen-100);
outline: none;
border: none;
border-radius: 25px;
color: var(--color-white);
cursor: pointer;
font-size: medium;
}
#signin:hover {
background-color: rgba(76, 175, 80, 0.8);
transition: 0.5s;
}
.form-header {
height: 90px;
}
.form-body {
height: 183px;
}
.text {
width: 85%;
margin: 0 auto;
}