-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
84 lines (84 loc) · 1.47 KB
/
style.css
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
*{
padding: 0;
margin: 0;
list-style: none;
text-decoration: none;
font-family: sans-serif;
}
body{
background-color: lightgrey;
}
span{
font-size: 20px;
font-weight: 500;
}
.formClass form {
left: 0;
position: fixed;
width: 17%;
height: 100%;
background: white;
padding: 5px 10px;
border-radius: 15px;
}
form .ddainput {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
form .ddainput .input-box {
margin: 5px 0 5px 0;
width: calc(100% / 2 - 5px);
}
.ddainput .input-box input {
width: 100%;
height: 20px;
outline: none;
border-radius: 5px;
border: 2px solid pink;
}
form .btn {
max-width: 100%;
display: block;
}
form .btn input{
width: 100%;
background-color: pink;
border-radius: 5px;
border: none;
padding: 3px;
margin: 5px 0 5px 0;
}
form .ddainput .input-box-radius {
margin: 5px 0 5px 0;
width: 100%;
}
form .ddainput .input-box-radius input{
width: 100%;
height: 20px;
outline: none;
border-radius: 5px;
border:2px solid pink;
}
form .ddainput .selectColor {
margin: 5px 0 5px 0;
width: 100%;
}
form .ddainput .selectColor .select{
width: 100%;
height: 24px;
border-radius: 5px;
border: 2px solid pink;
}
.select option{
background-color: pink;
}
canvas{
border: 2px solid white;
right: 0;
height: 100%;
width: 83%;
border-radius: 15px;
margin-left: 250px;
background-color: aliceblue;
}