-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
51 lines (45 loc) · 855 Bytes
/
style.css
File metadata and controls
51 lines (45 loc) · 855 Bytes
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
h1 {
color: #0046c7;
text-align: center;
margin-top: 50px;
justify-content: center;
align-items: center;
}
.section {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin-top: 30px;
}
.input-section {
display: inline-block;
text-align: left;
}
.input-section label {
font-size: 18px;
font-weight: bold;
margin-bottom: 5px;
display: block;
padding-left: 10px;
}
.input-section input {
width: 300px;
padding: 10px;
font-size: 14px;
border: 1px solid #525252;
border-radius: 10px;
}
.section button {
padding: 15px 50px;
font-size: 16px;
background-color: #0046c7;
color: white;
border: none;
border-radius: 10px;
cursor: pointer;
margin-left: 20px;
}
#buttonThrottle {
margin-top: 30px;
}