-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
75 lines (66 loc) · 1.25 KB
/
styles.css
File metadata and controls
75 lines (66 loc) · 1.25 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
body{
margin : 10px;
}
#canvas{
/*background-color: yellow;*/
background-color: white;
border:1px solid #000000;
}
.container-1{
width: 100%;
}
.top-child{
/* background-color: rgb(34, 223, 160); */
background-color: white;
padding-top: 5px;
display:grid;
justify-content: center;
align-content: center;
}
.left-child{
/* background-color: beige; */
background-color: white;
float: left;
width: 10%;
height: 70%;
display:grid;
justify-content: center;
align-content: center;
overflow:hidden;
}
.right-child{
/* background-color: aqua; */
background-color: white;
float: right;
width: 90%;
height: 70%;
}
.bottom-child{
/* background-color: rgb(224, 224, 224); */
background-color: white;
float: left;
width: 100%;
display:grid;
justify-content: center;
align-content: center;
}
#inner{
margin-bottom: 15px;
}
.select-div{
margin-top: 20px;
display:grid;
justify-content: center;
align-content: center;
}
select{
height: 40px;
border-radius: 20px;
border-color: rgb(24, 140, 24);
fill-opacity: 0;
background-color: rgb(255, 255, 255,0);
}
select:hover{
background-color: rgb(10, 185, 10);
color: whitesmoke;
}