-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
79 lines (69 loc) · 1.26 KB
/
style.css
File metadata and controls
79 lines (69 loc) · 1.26 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
.form_auth_block {
width: 500px;
height: 500px;
margin: 0 auto;
background-size: cover;
border-radius: 4px;
}
.form_auth_block_content {
padding-top: 15%;
}
.form_auth_block_head_text {
display: block;
text-align: center;
padding: 10px;
font-size: 20px;
font-weight: 600;
background: #ffffff;
opacity: 0.7;
}
.form_auth_block label {
display: block;
text-align: center;
padding: 10px;
background: #ffffff;
opacity: 0.7;
font-weight: 600;
margin-bottom: 10px;
margin-top: 10px;
}
.form_auth_block input {
display: block;
margin: 0 auto;
width: 80%;
height: 45px;
border-radius: 10px;
border: none;
outline: none;
}
input:focus {
color: #000000;
border-radius: 10px;
border: 2px solid #436fea;
}
.form_auth_button {
display: block;
width: 80%;
margin: 0 auto;
margin-top: 10px;
border-radius: 10px;
height: 35px;
border: none;
cursor: pointer;
}
::-webkit-input-placeholder {
color: #3f3f44;
padding-left: 10px;
}
::-moz-placeholder {
color: #3f3f44;
padding-left: 10px;
}
:-moz-placeholder {
color: #3f3f44;
padding-left: 10px;
}
:-ms-input-placeholder {
color: #3f3f44;
padding-left: 10px;
}