-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
80 lines (79 loc) · 1.37 KB
/
Copy pathstyle.css
File metadata and controls
80 lines (79 loc) · 1.37 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
body, html {
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.form-container {
width: 70%;
height: 50%;
border: black solid 5px;
border-radius: 20px;
display: flex;
flex-direction: column;
justify-content: center;
}
.content {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
max-height: 100%;
width: 100%;
}
#form {
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 0px;
}
#form p {
margin-right: 20px;
}
#form input[type="number"] {
width: 10%;
margin-right: 10px;
border-radius: 5px;
}
#red {
color: rgb(255,0,0);
}
#green {
color: rgb(0,255,0);
}
#blue {
color: rgb(0,0,255);
}
#form input[type="button"] {
width: 20%;
margin-left: 10px;
border-radius: 5px;
border: solid;
}
#form input[type="button"]:hover {
cursor: pointer;
}
.color-info {
display: flex;
flex-direction: column;
align-items: center;
}
.label {
display: flex;
font-size: 20px;
}
.color-types {
display: flex;
width: 100%;
justify-content: space-evenly;
}
.color-info #square {
border: black solid;
width: 20px;
height: 20px;
}
.color-info p {
margin: 10px 15px 0px 0px;
}