-
Notifications
You must be signed in to change notification settings - Fork 0
/
LS1.css
83 lines (74 loc) · 1.62 KB
/
LS1.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
html {
height: 100%;
}
body {
height: 100%;
margin: 0;
font-family: Arial, Helvetica, sans-serif;
display: grid;
justify-items: center;
align-items: center;
background: linear-gradient(145deg, #08023a 10%,#068A5E, #0fb7dd 85%);
}
#main-holder {
width: 40%;
height: 60%;
display: grid;
justify-items: center;
align-items: center;
background-color: rgb(255, 255, 255);
border-radius: 7px;
box-shadow: 5px 5px 10px 1px black;
}
#login-error-msg-holder {
width: 100%;
height: 100%;
display: grid;
justify-items: center;
align-items: center;
}
#login-error-msg {
width: 23%;
text-align: center;
margin: 0;
padding: 5px;
font-size: 12px;
font-weight: bold;
color: #eeeeee;
border: 1px solid #000000;
background-color: #bb2d2d;
opacity: 0;
}
#error-msg-second-line {
display: block;
}
#login-form {
align-self: flex-start;
display: grid;
justify-items: center;
align-items: center;
}
.login-form-field::placeholder {
align-items: center;
color: #3a3a3a;
}
.login-form-field {
border: none;
align-items: center;
border-bottom: 1px solid #3a3a3a;
margin-bottom: 50px;
border-radius: 3px;
outline: none;
padding: 5px 5px 5px 5px;
}
#login-form-submit {
width: 100%;
padding: 20px;
border: none;
border-radius: 5px;
color: white;
font-weight: bold;
background-color: #3a3a3a;
cursor: pointer;
outline: none;
}