-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
105 lines (91 loc) · 1.98 KB
/
Copy pathstyle.css
File metadata and controls
105 lines (91 loc) · 1.98 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
body {
display: flex;
justify-content: center;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
background-color: #212121;
color: white;
}
.form-area {
margin-top: 5rem;
display: flex;
flex-direction: column;
background-color: #171717;
padding: 1rem;
padding-bottom: 2rem;
padding-top: 0rem;
border-radius: 1.5rem;
box-shadow: 1px 1px 10px 1px black;
}
.form-area h1 {
text-align: center;
font-weight: 100;
}
.form-area form {
margin-top: 1rem;
display: flex;
flex-direction: column;
gap: 1rem;
}
.form-area form input {
height: 2.1rem;
border: none;
outline: 0;
background-color: #171717;
box-shadow: 1px 1px 10px 1px black;
border: 2px solid rgba(0, 0, 0, 0.418);
border-radius: 1rem;
padding-left: 1rem;
color: white;
}
.form-area form input:focus {
border: 2px solid green;
}
.form-area form .submit {
margin-top: 1rem;
height: 2.5rem;
background-color: green;
color: white;
border-radius: 15px;
padding-left: 0;
cursor: pointer;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
box-shadow: none;
padding-left: 0.4rem;
transition: 300ms;
}
.form-area form .submit:hover {
background-color: #424242;
}
.login-ok {
display: flex;
flex-direction: column;
}
.login-ok a {
background-color: orangered;
color: white;
border-radius: 2rem;
text-decoration: none;
text-align: center;
height: 2rem;
line-height: 2rem;
}
.login-ok a:hover {
background-color: #424242;
}
.form-area form .new-user {
display: flex;
align-items: center;
padding-top: 0.5rem;
}
.form-area form .new-user a {
color: green;
padding-left: 0.5rem;
font-weight: bold;
}
.invalid {
color: orangered;
position: absolute;
margin-left: 2.4rem;
margin-top: 4.4rem;
font-style: italic;
}