-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlaunchpad.css
More file actions
117 lines (100 loc) · 2.48 KB
/
launchpad.css
File metadata and controls
117 lines (100 loc) · 2.48 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
@keyframes pulse-cyan {
0% {
background-color: #61e9ff; /* Initial color */
}
50% {
background-color: transparent; /* Intermediate color (semi-transparent) */
}
100% {
background-color: #61e9ff; /* Return to initial color */
}
}
.pulsating-cyan {
animation: pulse-cyan 1s infinite; /* 2s - animation duration, infinite - infinite execution */
}
.close-button {
position: absolute;
top: 10px;
right: 10px;
cursor: pointer;
font-size: 20px;
color: #333; /* Color for the close button */
}
.highlight {
border-color: wheat !important;
border-width: 1px !important;
}
.highlight_wrong {
border-color: red !important;
border-width: 1px !important;
}
.overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5); /* Transparent background */
z-index: 1;
}
.centered-box {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: #ffffff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
z-index: 2;
}
.launchpad {
border: 1px solid black;
}
.launchpad td {
width: 12.5%; /* Distribute cells into 8 columns (100% / 8) */
height: 12.5%; /* Distribute cells into 8 rows (100% / 8) */
text-align: center; /* Center-align text horizontally */
vertical-align: middle; /* Center-align text vertically */
border: 1px solid #000; /* Border for cells */
position: relative; /* Add relative position for pseudo-element */
}
.launchpad td::before {
content: ''; /* Fake content */
display: block;
padding-top: 20%; /* Decrease the value to reduce the size of squares */
padding-bottom: 20%; /* Decrease the value to reduce the size of squares */
}
/* Sticky footer styles
-------------------------------------------------- */
html {
position: relative;
min-height: 100%;
}
body {
/* Margin bottom by footer height */
margin-bottom: 60px;
}
.footer {
position: absolute;
/*bottom: 0;*/
width: 100%;
/* Set the fixed height of the footer here */
height: 60px;
background-color: #f5f5f5;
}
/* Custom page CSS
-------------------------------------------------- */
/* Not required for template or sticky footer method. */
.container {
width: auto;
max-width: 680px;
padding: 0 15px;
}
.container .text-muted {
margin: 20px 0;
}
#visualizer {
width: 100%;
height: auto;
}