-
-
Notifications
You must be signed in to change notification settings - Fork 546
Expand file tree
/
Copy pathstyles.css
More file actions
65 lines (55 loc) · 841 Bytes
/
Copy pathstyles.css
File metadata and controls
65 lines (55 loc) · 841 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
53
54
55
56
57
58
59
60
61
62
63
64
65
.colorSelection {
display: flex;
gap: 20px;
margin-left: 20px;
margin-top: 20px;
}
.colorOption {
display: flex;
flex-direction: column;
align-items: center;
}
.square {
height: 25px;
width: 25px;
}
#blueOptions {
background-color: #180fcb;
}
#greenOptions {
background-color: green;
}
#redOptions {
background-color: red;
}
#sizediv {
margin: 20px 0 0 20px;
}
#fn,
#sn,
#em {
margin: 20px 20px;
}
form {
padding-top: 2%;
margin-right: 50%;
margin-left: 25%;
background-color: bisque;
}
h1,
h5 {
margin-left: 30%;
}
button[type="submit"],
input[type="submit"] {
padding: 10px 20px;
margin-left: 35%;
font-size: 1rem;
font-family: inherit;
color: #fff;
background-color: #2563eb;
border: none;
border-radius: 6px;
cursor: pointer;
transition: background-color 0.15s ease;
}