-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathextra.css
More file actions
111 lines (92 loc) · 1.87 KB
/
extra.css
File metadata and controls
111 lines (92 loc) · 1.87 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
:root {
--bg: #fafafa;
--bd-color: rgb(211,211,211,1);
}
body {
margin: 0;
padding: 0;
width: calc(100vw - var(--scrollbar-width));
background: var(--bg);
font-family: 'Poppins';
display: flex;
justify-content: center;
}
button {
cursor: pointer;
}
/* Login CSS */
section.login-container {
display: flex;
flex-direction: column;
width: 380px;
margin-top: 80px;
}
.login-container .login {
display: flex;
flex-direction: column;
align-items: center;
background: white;
border: 1px solid;
border-color: var(--bd-color);
border-radius: 4px;
padding: 80px 20px;
margin-bottom: 40px;
}
.login img {
width: 160px;
margin-bottom: 30px;
}
.login form {
display: flex;
flex-direction: column;
width:74%;
font-family: 'Poppins';
}
.login form input {
padding: 10px 4px;
margin: 4px 0;
border: 1px solid;
border-color: var(--bd-color);
background: var(--bg);
border-radius: 4px;
}
.login form input:focus {
outline: none;
}
.login form input[type=submit] {
margin-top: 14px;
background: lightblue;
cursor: pointer;
margin-bottom: 34px;
}
.login a {
text-decoration: none;
font-size: 14px;
}
.login span {
font-size: 12px;
margin: 0 14%;
text-align: center;
}
.login span a{
text-decoration: none;
font-size: 12px;
}
.login span a:hover{
text-decoration: underline;
}
.login-container .signup {
display: flex;
flex-direction: column;
align-items: center;
background: white;
border: 1px solid;
border-color: var(--bd-color);
border-radius: 4px;
padding: 30px 20px;
font-size: 14px;
}
.login-container .signup a {
text-decoration: none;
font-weight: bold;
}