-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
100 lines (87 loc) · 1.32 KB
/
main.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
96
97
98
99
100
@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css);
* {
margin: 0px;
padding: 0px;
/* border: 1px solid black; */
box-sizing: border-box;
}
html, body {
font-family: Arial, Helvetica, sans-serif;
min-width: 250px;
}
header {
padding: 10px;
color: white;
background: #222;
/* border-bottom: 3px solid white; */
}
#title {
margin-bottom: 5px;
}
.faint {
font-weight: lighter;
color: #999;
padding: 20px;
}
li {
padding: 9px 0px;
display: flex;
justify-content: space-between;
align-items: center;
}
li:hover {
background: #ddd;
}
.stashItemName {
font-size: 15px;
text-decoration: none;
font-weight: bold;
color: black;
padding: 3px;
}
.stashControls {
white-space: nowrap;
}
.stashControls * {
margin: 2px;
cursor: pointer;
display: inline;
}
.stashControls button {
background: none;
border: none;
font-size: 20px;
}
.stashControls input[type=checkbox] {
display: none;
}
.stashControls label {
font-size: 20px;
}
.accented {
color: green;
}
#stashInfo {
padding-top: 10px;
}
#stashName {
width: 100%;
border: none;
border-bottom: 2px solid #222;
padding: 9px;
}
#stashName:focus {
outline: none;
}
#btnNewStash {
width: 100%;
color: white;
background: #222;
border: none;
padding: 10px;
margin-top: 3px;
}
#signature {
float: right;
margin-top: 10px;
}