-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathstyle.css
More file actions
96 lines (85 loc) · 1.83 KB
/
style.css
File metadata and controls
96 lines (85 loc) · 1.83 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
section {
display: block;
}
html,
body {
height: 100%;
}
body {
font: 16px/20px sans-serif;
color: #404040;
background: #ffffff;
margin: 0;
padding: 0;
}
form {
padding: 1.1rem 1.6rem 1.6rem;
}
input {
display: block;
margin: 10px 0;
padding: 12px 16px;
width: 200px;
color: #222222;
background: #ebebeb;
border: 1px solid;
border-color: #c9c9c9;
border-radius: 2px;
font-size: 14px;
}
button[type="submit"] {
margin-top: 32px;
background-color: #03020d;
border-radius: 6px;
font-size: 1rem;
font-weight: 500;
line-height: 1.125rem;
color: #ffffff;
padding: 0.9375rem 1.5rem;
border: 0;
font-weight: 700;
}
button[type="submit"]:hover {
background: #ff5416;
}
.container::after {
content: "";
position: fixed;
z-index: 1;
top: 0;
left: 0;
font-size: 30px;
width: 100%;
height: 100%;
background-position: 10% 20%;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='552' height='552' viewBox='0 0 552 552' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='276' cy='276' r='55' stroke='%23FF0000' stroke-width='2'/%3e%3ccircle cx='276' cy='276' r='127' stroke='%23FF0000' stroke-width='2'/%3e%3ccircle cx='276' cy='276' r='194' stroke='%23FF0000' stroke-width='2'/%3e%3ccircle cx='276' cy='276' r='274' stroke='%23FF0000' stroke-width='2'/%3e%3c/svg%3e ");
transform: translate(1000px, 60px) scale(2);
}
.login {
position: relative;
margin: auto;
padding: 0;
background: white;
border-radius: 2px;
box-shadow: 0 0 200px #72727255;
}
.login h1 {
margin: 0;
padding: 1rem 0;
font-size: 1rem;
font-weight: 900;
color: #fff;
text-align: center;
background: #000000;
border-radius: 4px 4px 0 0;
}
.login {
z-index: 2;
margin: auto;
width: unset;
}
.container {
display: flex;
height: 100%;
}