-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
80 lines (70 loc) · 1.41 KB
/
styles.css
File metadata and controls
80 lines (70 loc) · 1.41 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 {
margin: 0;
padding: 0;
height: 100%;
font-family: Arial, sans-serif;
background-color: black; /* Set background color to black */
color: white; /* Set text color to white for readability */
}
.container {
display: grid;
grid-template-columns: 200px 1fr;
height: 100vh;
}
.left-column {
background-color: black;
padding: 10px;
}
.button {
display: block;
width: 100%;
padding: 10px;
margin: 10px 0;
background-color: #4CAF50;
color: white;
border: none;
cursor: pointer;
text-align: left;
font-size: 18px;
}
.button.active {
background-color: #333;
border-left: 5px solid #00b600;
}
.right-section {
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: 1fr 1fr;
transition: all 0.5s ease;
}
.grid-item {
position: relative;
border: 1px solid #ccc;
padding: 2px;
font-size: 18px;
background-color: black; /* Set grid background to black */
}
.iframe-container {
width: 100%;
height: 100%;
}
.overlay-text {
position: absolute;
top: 5px;
left: 50%;
transform: translateX(-50%);
background-color: rgba(0, 0, 0, 0.2);
color: rgb(0, 200, 0);
padding: 5px;
z-index: 10;
font-size: 32px;
font-weight: bold;
text-transform: uppercase;
}
.hidden {
display: none;
}
.full-screen {
grid-column: 1 / span 2;
grid-row: 1 / span 2;
}