Skip to content

Commit f3f5de4

Browse files
committed
Committing dist/ui/popup.css
1 parent 19cd1d3 commit f3f5de4

File tree

1 file changed

+62
-0
lines changed

1 file changed

+62
-0
lines changed

dist/ui/popup.css

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
#author,
2+
#footer,
3+
.courseraModelBtn {
4+
font-weight: 700;
5+
}
6+
:root {
7+
--primary-color: #00ff00;
8+
--secondary-color: #333333;
9+
--background-color: #1a1a1a;
10+
}
11+
#courseraModel,
12+
body {
13+
background-color: var(--background-color);
14+
padding: 10px;
15+
border-radius: 10px;
16+
width: fit-content;
17+
height: fit-content;
18+
font-family: Arial, sans-serif;
19+
}
20+
#courseraModelContent {
21+
display: flex;
22+
flex-direction: column;
23+
gap: 14px;
24+
}
25+
#courseraModelTitle {
26+
font-size: 20px;
27+
font-weight: 700;
28+
color: #fff;
29+
margin: 0;
30+
text-align: center;
31+
white-space: nowrap;
32+
}
33+
#courseraModelGrid {
34+
display: grid;
35+
grid-template-columns: repeat(2, 1fr);
36+
gap: 10px;
37+
}
38+
.courseraModelBtn {
39+
padding: 10px;
40+
font-size: 16px;
41+
border: none;
42+
border-radius: 5px;
43+
background-color: var(--secondary-color);
44+
color: var(--primary-color);
45+
cursor: pointer;
46+
white-space: nowrap;
47+
}
48+
49+
.courseraModelBtn:disabled {
50+
background-color: #333;
51+
color: #666;
52+
cursor: not-allowed;
53+
}
54+
55+
#footer {
56+
display: flex;
57+
justify-content: center;
58+
align-items: center;
59+
gap: 10px;
60+
color: #fff;
61+
margin-top: 20px;
62+
}

0 commit comments

Comments
 (0)