-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtil-styles.css
More file actions
119 lines (97 loc) · 1.65 KB
/
til-styles.css
File metadata and controls
119 lines (97 loc) · 1.65 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
/* #git-button-area {
padding: 1rem 0.5rem 1rem 0.5rem;
} */
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, .child-button {
color: #fff;
padding: 0.5rem 1rem 0.5rem 1rem;
border-radius: 0.35rem;
background-color: #0d1117;
}
.label-button {
border: 1px, solid, #57606a;
font-weight: bold;
}
.child-button {
background-color: #0d1117;
}
.child-button:hover {
border: 2px, solid, rgb(141, 150, 160);
background-color: #30363d;
}
/* Button hide and show */
.hidden {
display: none;
}
.unset {
display: inline;
}
/* Input area */
.input-area {
width: 100%;
height: 50vw;
}
/* Github classes */
.h4 {
font-size: 16px;
font-weight: bold;
color: rgb(255, 255, 255);
}
.h4:hover {
font-size: 16px;
font-weight: bold;
color: rgb(68, 147, 248);
}
.BorderGrid-cell {
display: table-cell;
border: 1px solid;
}
.mb-3 {
margin-bottom: 16px;
}