-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
148 lines (129 loc) · 2.63 KB
/
style.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
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
body {
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin: 0;
color: #6a6f8c;
background: #c8c8c8;
font: 600 16px/18px 'Open Sans', sans-serif;
}
h1 {
color: white;
font-size: 2.5rem !important;
font-weight: 300;
margin-top: 20px;
}
.error {
text-align: center;
color: rosybrown;
}
.noerror {
text-align: center;
color: rgb(145, 199, 160) !important;
}
.noerror h1{
line-height: 50px;
}
a {
color: inherit;
text-decoration: none
}
.login-wrap {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
border-radius: 16px;
min-width: 500px;
min-height: 600px;
position: relative;
background-image: url(https://source.unsplash.com/random/?city/525x670);
background-position: center;
background-size: cover;
box-shadow: 0 0 15px 0 rgba(0, 0, 0, .2), 0 17px 50px 0 rgba(0, 0, 0, .3);
}
.backdrop {
overflow: hidden;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
border-radius: 16px;
min-width: 500px;
min-height: 600px;
position: relative;
background-color: rgba(40, 57, 101, .9);
border: solid 3px rgba(46, 84, 181, 0.744);
}
.login-html {
box-sizing: border-box;
padding: 0px 400px;
overflow: hidden;
border-radius: 16px;
display: flex;
flex-direction: column;
justify-content: center;
position: absolute;
}
.login-html .tab,
.login-form .group .label,
.login-form .group .button {
text-transform: uppercase;
}
.login-form .group {
margin-bottom: 15px;
}
.login-form .group .label,
.login-form .group .input,
.login-form .group .button,
.noerror button{
width: 300px;
color: #fff;
display: block;
}
.login-form .group .input,
.login-form .group .button,
.noerror button {
box-sizing: border-box;
border: none;
padding: 15px 20px;
border-radius: 25px;
background: rgba(255, 255, 255, .1);
backdrop-filter: blur(5px);
}
.login-form .group input[data-type="password"] {
-webkit-text-security: circle;
letter-spacing: 5px;
font-weight: 900;
}
.login-form .group .label {
color: #aaa;
font-size: 12px;
padding-bottom: 6px;
}
.login-form .group .button,
.noerror button {
background: #3b6cff78;
backdrop-filter: blur(5px) saturate(150%);
transition: ease-out 0.1s;
}
.login-form .group .button:hover,
.noerror button:hover {
background: #1d3fa878;
transition: ease 0.5s;
}
.login-form .group .button:active,
.noerror button:active {
box-sizing: border-box;
background: #3b6cff78;
transition: ease 0.5s;
box-shadow: 0 0 20px rgba(255, 255, 255, 0.09);
}
.show {
display: initial;
}
.hide {
display: none;
}