forked from mysticuno/wordle-helper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.css
80 lines (65 loc) · 1.27 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
body {
width: 300px;
font-size: 16px;
font-family: "Clear Sans", "Helvetica Neue", Arial, sans-serif;
display: flex;
flex-direction: column;
flex-wrap: nowrap;
align-content: stretch;
justify-content: flex-start;
align-items: center;
}
#description, #wordList {
padding: 0px 10px 10px 10px;
font-size: 22px;
display:inline-block
}
#description>a:link, #description>a:visited {
color: #538d4e;
text-decoration: none;
display: block;
}
#description>a:hover {
text-decoration: underline;
}
.darkmode {
background-color: #121213;
}
.lightmode {
background-color: none;
}
.nocontrast {
color: #538d4e;
}
.highcontrast {
color: #f5793a;
}
.arrow {
text-decoration: none;
padding: 8px 14px;
background-color: #f1f1f1;
color: black;
cursor:pointer;
border-radius: 50%;
border-color: #ffff;
border: 1px solid white;
}
.btn-group button {
padding: 7px;
cursor: pointer; /* Pointer/hand icon */
float: left; /* Float the buttons side by side */
font-size: 16px;
border-color: #ffff;
border: 1px solid white;
width:9em;
height: 3em;
}
/* Clear floats (clearfix hack) */
.btn-group:after {
content: "";
clear: both;
display: table;
}
.btn-group button:not(:last-child) {
border-right: none; /* Prevent double borders */
}