-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathstyle.css
More file actions
128 lines (114 loc) · 2.88 KB
/
style.css
File metadata and controls
128 lines (114 loc) · 2.88 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
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
body {
margin: 0;
background-color: #fcfcfc;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
}
input {
border: 0;
outline: 0;
color: rgb(60, 66, 87);
background-color: rgb(255, 255, 255);
box-shadow: rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(60 66 87 / 16%) 0px 0px 0px 1px, rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(0 0 0 / 0%) 0px 0px 0px 0px;
border-radius: 4px;
font-size: 14px;
line-height: 20px;
font-weight: 400;
padding: 4px 8px;
min-height: 28px;
vertical-align: middle;
transition: background-color .24s, box-shadow .24s;
transition-property: background-color, box-shadow;
transition-duration: 0.24s, 0.24s;
transition-timing-function: ease, ease;
transition-delay: 0s, 0s;
}
:focus {
box-shadow: rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(58 151 212 / 36%) 0px 0px 0px 4px, rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(60 66 87 / 16%) 0px 0px 0px 1px, rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(0 0 0 / 0%) 0px 0px 0px 0px;
}
h1, h2 {
color: #86b0ff;
text-align: center;
}
label {
font-size: 17px;
}
button {
display: inline-block;
outline: none;
cursor: pointer;
font-size: 16px;
line-height: 20px;
font-weight: 600;
border-radius: 8px;
padding: 13px 23px;
border: 1px solid #222222;
transition: box-shadow 0.2s ease 0s, -ms-transform 0.1s ease 0s, -webkit-transform 0.1s ease 0s, transform 0.1s ease 0s;
background: #fff;
color: #222222;
}
:hover {
border-color: #000000;
background: #f7f7f7;
}
.btn-section {
display: flex;
justify-content: space-between;
margin-top: 15px;
margin-bottom: 15px;
}
.btn-section button {
width: 150px;
color: #f7f7f7;
background-color: #86b0ff;
text-align: center;
}
:hover {
border-color: #000000;
}
#form {
max-width: 600px;
min-width: 450px;
min-height: 200px;
display: flex;
flex-direction: column;
justify-content: space-around;
height: 500px;
padding: 35px;
border: 1px solid rgba(255, 255, 255, .25);
border-radius: 20px;
background-color: rgba(255, 255, 255, 0.45);
box-shadow: 0px 4px 6px 0px rgba(50, 50, 93, 0.11), 0px 1px 3px 0px rgba(0, 0, 0, 0.08);
}
.input-section {
display: flex;
flex-direction: column;
margin: 10px 3px;
}
.input-section label {
font-weight: bold;
margin-bottom: 5px;
}
#btn-submit {
width: 120px;
text-align: center;
margin: 10px auto;
}
.response {
color: red;
font-size: x-large;
font-weight: 900;
text-align: center;
background-color: #dddddd;
display: block;
text-align: center;
height: 50px;
line-height: 50px;
}
button.selected {
color: #3300ff;
border-color: #3300ff;
}