-
Notifications
You must be signed in to change notification settings - Fork 86
Expand file tree
/
Copy pathstyle.css
More file actions
90 lines (77 loc) · 1.48 KB
/
style.css
File metadata and controls
90 lines (77 loc) · 1.48 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
html,
body {
padding: 0;
margin: 0;
font-family: sans-serif;
background-color: #FAF9F6;
}
.container {
position: fixed;
top: 38%;
left: 50%;
transform: translate(-50%, -50%);
}
svg,
.form-container {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.form-container {
width: 270px;
}
svg {
width: 1000px;
pointer-events: none;
}
.form-container .form-row {
width: 100%;
height: 60px;
display: flex;
align-items: center;
justify-content: flex-start;
}
.form-container .form-row input {
width: 100%;
height: 30px;
margin: 0;
padding: 5px;
outline: none;
border: 2px solid #dddddd;
}
.form-container .form-row input.valid {
border-color: #000000;
}
.form-container .form-row input[type="checkbox"] {
width: 20px;
height: 20px;
margin: 0 10px 0 0;
padding: 0;
border: 2px solid #dddddd;
}
.form-container .form-row input[type="submit"] {
height: 40px;
cursor: pointer;
border: none;
background-color: #eeeeee;
/*pointer-events: none;*/
}
/*.form-container .form-row input[type="submit"].valid {*/
/* pointer-events: auto;*/
/*}*/
.form-container input[type="submit"]:hover {
background-color: #dddddd;
}
.form-container label,
.form-container input,
.form-container input::placeholder {
font-size: 15px;
font-family: inherit;
}
svg {
stroke-width: 1.2px;
/*stroke: #222245;*/
stroke: #000000;
fill: none
}