-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.css
95 lines (87 loc) · 1.96 KB
/
popup.css
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
/* popup.css */
/* General styles */
body {
font-family: Arial, sans-serif;
background-color: #f3f3f3;
margin: 0;
padding: 20px;
width: 500px;
}
.container {
max-width: 100%;
width: 80%;
padding: 20px;
margin: 0 auto;
background-color: #fff;
padding: 30px;
border-radius: 10px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
h1 {
text-align: center;
color: #333;
font-size: xx-large;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
font-weight: bold;
margin:auto;
margin-bottom: 15px;
}
h2 {
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
text-align: center;
}
#select {
display: block;
font-size: medium;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
text-align:center;
}
#topics {
display: block;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
justify-content: center;
margin: auto;
width: 300px;
}
/* Article styles */
.article {
margin-bottom: 15px;
padding: 15px;
background-color: #f9f9f9;
border-radius: 10px;
box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}
.article a {
font-weight: bold;
color: #3498db;
text-decoration: none;
transition: color 0.3s ease-in-out;
}
.article a:hover {
color: darkblue;
text-decoration: underline;
}
.source {
color: #777;
font-size: 12px;
margin-top: 6px;
}
/* Button styles */
button {
justify-content: center;
width: 200px;
margin:auto;
display: flex;
background-color: #3498db;
color: #fff;
border: none;
border-radius: 5px;
padding: 10px 20px;
cursor: pointer;
margin-top: 10px;
margin-bottom: 10px;
transition: background-color 0.3s ease-in-out;
}
button:hover {
background-color: #2980b9;
}