« get me outta code hell

style.css « popup « extension - interactive-bgm - Browser extension that adds background music based on the site you're browsing
about summary refs log tree commit diff
path: root/extension/popup/style.css
blob: d4ac7b22a7ac43de1ec19a9d2715cc8691dfe3c8 (plain)
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
101
102
103
104
105
106
107
108
109
110
body, html {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    min-width: 300px;
    max-width: 400px;
}

body {
    background-color: #EEEEEE;
    color: black;
    font-family: Helvetica, Arial, sans-serif;
}

label {
    font-weight: 800;
}

input[type=checkbox] {
    width: 13px;
    height: 13px;
    padding: 0;
    margin: 0;
    position: relative;
    top: 1px;
}

input, button {
    margin-right: 4px;
    margin-left: 4px;
}

ul, p {
    margin: 4px 0;
}

li {
    padding: 3px;
}

li:nth-child(even) {
    background-color: white;
}

li:nth-child(odd) {
    background-color: #DDDDDD;
}

h1 {
    margin: 2px 0;
    font-size: 1.2em;
    text-align: center;
}

h2 {
    font-size: 0.9em;
    margin: 2px 0;
    text-align: center;
    overflow: hidden;
}

h2:before, h2:after {
    background-color: black;
    content: '';
    display: inline-block;
    height: 1px;
    position: relative;
    vertical-align: middle;
    width: 50%;
}

h2:before {
    right: 0.5em;
    margin-left: -50%;
}

h2:after {
    left: 0.5em;
    margin-right: -50%;
}

.screen {
    width: 100%;
    height: 100%;
    padding: 5px;
    box-sizing: border-box;
}

.screen:not(.visible) {
    display: none;
}

#loading-screen p, #invalid-host-screen {
    text-align: center;
    font-style: oblique;
}

#track-list {
    list-style: none;
    padding-left: 0;
}

#track-list li.track button {
    float: right;
}

#track-list li.action {
    text-align: center;
}