-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
52 lines (46 loc) · 714 Bytes
/
Copy pathstyles.css
File metadata and controls
52 lines (46 loc) · 714 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
52
html {
box-sizing: border-box;
}
*{
box-sizing: inherit;
}
li {
margin-bottom: 10px;
}
form button {
background:green;
color: white;
}
li button, button {
font-size: 12px;
margin-left: 20px;
color: #666;
border-radius: 12px;
font-weight: bold;
text-transform: uppercase;
padding: 1em .5em;
}
h1 {
text-align: center;
font-size: 3.45em;
}
label{
font-size: 1.2em;
}
input {
font-size: 27px;
border-radius: 12px;
border-block: 2px solid red;
margin-top: 10px;
}
form {
width: 80%;
margin: 0 auto;
display: flex;
justify-content: center;
}
label {
margin-top: .5rem;
align-self: center;
font-size: 1.5rem;
}