-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
161 lines (158 loc) · 3.93 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
149
150
151
152
153
154
155
156
157
158
159
160
161
html {
--s: 100px; /* control the size */
--c1: #ff6840;
--c2: #202020;
--_s: calc(2*var(--s)) calc(2*var(--s));
--_g: var(--_s) conic-gradient(at 40% 40%,#0000 75%,var(--c1) 0);
--_p: var(--_s) conic-gradient(at 20% 20%,#0000 75%,var(--c2) 0);
background:
calc( .9*var(--s)) calc( .9*var(--s))/var(--_p),
calc(-.1*var(--s)) calc(-.1*var(--s))/var(--_p),
calc( .7*var(--s)) calc( .7*var(--s))/var(--_g),
calc(-.3*var(--s)) calc(-.3*var(--s))/var(--_g),
conic-gradient(from 90deg at 20% 20%,var(--c2) 25%,var(--c1) 0)
0 0/var(--s) var(--s);
animation: m 3s infinite;
}
@keyframes m {
0% {
background-position:
calc( .9*var(--s)) calc( .9*var(--s)),
calc(-.1*var(--s)) calc(-.1*var(--s)),
calc( .7*var(--s)) calc( .7*var(--s)),
calc(-.3*var(--s)) calc(-.3*var(--s)),0 0
}
25% {
background-position:
calc(1.9*var(--s)) calc( .9*var(--s)),
calc(-1.1*var(--s)) calc(-.1*var(--s)),
calc(1.7*var(--s)) calc( .7*var(--s)),
calc(-1.3*var(--s)) calc(-.3*var(--s)),0 0
}
50% {
background-position:
calc(1.9*var(--s)) calc(-.1*var(--s)),
calc(-1.1*var(--s)) calc( .9*var(--s)),
calc(1.7*var(--s)) calc(-.3*var(--s)),
calc(-1.3*var(--s)) calc( .7*var(--s)),0 0
}
75% {
background-position:
calc(2.9*var(--s)) calc(-.1*var(--s)),
calc(-2.1*var(--s)) calc( .9*var(--s)),
calc(2.7*var(--s)) calc(-.3*var(--s)),
calc(-2.3*var(--s)) calc( .7*var(--s)),0 0
}
100% {
background-position:
calc(2.9*var(--s)) calc(-1.1*var(--s)),
calc(-2.1*var(--s)) calc(1.9*var(--s)),
calc(2.7*var(--s)) calc(-1.3*var(--s)),
calc(-2.3*var(--s)) calc(1.7*var(--s)),0 0
}
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
-webkit-font-smoothing: antialiased;
}
body {
font-family: 'Rubik', sans-serif;
}
.login-form {
background: #fff;
width: 500px;
margin: 65px auto;
display: -webkit-box;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
flex-direction: column;
border-radius: 4px;
box-shadow: 0 2px 25px rgba(0, 0, 0, 0.2);
}
.login-form h1 {
padding: 35px 35px 0 35px;
font-weight: 300;
}
.login-form .content {
padding: 35px;
text-align: center;
}
.login-form .input-field {
padding: 12px 5px;
}
.login-form .input-field input {
font-size: 16px;
display: block;
font-family: 'Rubik', sans-serif;
width: 100%;
padding: 10px 1px;
border: 0;
border-bottom: 1px solid #747474;
outline: none;
-webkit-transition: all .2s;
transition: all .2s;
}
.login-form .input-field input::-webkit-input-placeholder {
text-transform: uppercase;
}
.login-form .input-field input::-moz-placeholder {
text-transform: uppercase;
}
.login-form .input-field input:-ms-input-placeholder {
text-transform: uppercase;
}
.login-form .input-field input::-ms-input-placeholder {
text-transform: uppercase;
}
.login-form .input-field input::placeholder {
text-transform: uppercase;
}
.login-form .input-field input:focus {
border-color: #222;
}
.login-form a.link {
text-decoration: none;
color: #747474;
letter-spacing: 0.2px;
text-transform: uppercase;
display: inline-block;
margin-top: 20px;
}
.login-form .action {
display: -webkit-box;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
flex-direction: row;
}
.login-form .action button {
width: 100%;
border: none;
padding: 18px;
font-family: 'Rubik', sans-serif;
cursor: pointer;
text-transform: uppercase;
background: #C3CCAF;
color: #777;
border-bottom-left-radius: 4px;
border-bottom-right-radius: 0;
letter-spacing: 0.2px;
outline: 0;
-webkit-transition: all .3s;
transition: all .3s;
}
.login-form .action button:hover {
background: #d8d8d8;
}
.login-form .action button:nth-child(2) {
background: #2d3b55;
color: #fff;
border-bottom-left-radius: 0;
border-bottom-right-radius: 4px;
}
.login-form .action button:nth-child(2):hover {
background: #3c4d6d;
}