forked from Nem-Tudo/betterbluesky_extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.css
60 lines (49 loc) · 790 Bytes
/
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
.main{
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
min-width: 350px;
}
.icon{
width: 50px;
height: 50px;
border-radius: 10%;
}
.header{
display: flex;
align-items: center;
margin-bottom: 7px;
}
.header h1{
margin-left: 10px;
}
body{
background-color: black;
padding: 10px;
}
h1{
color: white;
font-family: "Segoe UI", sans-serif;
display: inline;
}
h2{
color: white;
font-family: "Segoe UI", sans-serif;
}
h3{
color: white;
font-family: "Segoe UI", sans-serif;
}
h4{
color: white;
font-family: "Segoe UI", sans-serif;
}
a{
color: rgb(111, 111, 255);
display: inline;
text-decoration: none;
}
a:hover{
text-decoration: underline;
}