-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
87 lines (73 loc) · 1.27 KB
/
styles.css
File metadata and controls
87 lines (73 loc) · 1.27 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
81
82
83
84
85
86
87
html, body {
height:100%;
}
.master-container {
height: 100%;
display: flex;
flex-direction: column;
}
.column-container {
display: flex;
flex-direction: row;
height: 80%;
}
#column1, #column2, #column3 {
border: 1px solid #000;
border-radius: 0.5rem;
background-color: antiquewhite;
margin: 0.5%;
}
#column1 {
width: 50%;
}
#column2 {
width: 30%;
}
#column3 {
width: 20%;
}
/* Target area */
.target-area {
width: 100%;
height: fit-content;
padding: 0.5rem;
}
.test-button-area {
width: 90%;
height: 90%;
border: 1px solid #000;
border-radius: 0.5rem;
background-color: green;
}
/* Button style */
.buttons-div {
width: fit-content;
display: flex;
flex-direction: column;
}
.label-button {
padding: 0.5rem 1rem 0.5rem 1rem;
border: 1px, solid, #000;
border-radius: 0.35rem;
background-color: coral;
font-weight: bold;
}
.child-button {
padding: 0.5rem 1rem 0.5rem 1rem;
border: 1px, solid, #000;
border-radius: 0.35rem;
background-color: rgb(246, 178, 154);
font-weight: bold;
}
/* Button hide and show */
.hidden {
display: none;
}
.unset {
display: inline;
}
/* Input area */
.input-area {
width: 100%;
height: 50vw;
}