Welcome to mirror list, hosted at ThFree Co, Russian Federation.

popup.css « firefox « Extensions - github.com/Anarios/return-youtube-dislike.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a9b86ad8b53072ed57d20fb50d7047ee5e4653ed (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
/* Variables */
:root {
    --background: #111;
    --primary: #ff4444;
    --secondary: #272727;
    --white: #fff;
}

/* Window Styling */
html,body {
    background-color: var(--background);
    color: var(--white);
    width: 300px;
    padding: 0.5em;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
}

h1 {
    font-size: 26px;
}

button {
    color: var(--white);
    background: var(--secondary);
    cursor: pointer;
    padding: 5px 16px;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    box-shadow: 0 2px 4px -1px rgb(0 0 0 / 20%), 0 4px 5px 0 rgb(0 0 0 / 14%), 0 1px 10px 0 rgb(0 0 0 / 12%);
}

#advancedToggle {
    margin-top: 1em;
    margin-bottom: 2em;
}

#advancedSettings {
    display: none;
    border: 2px solid var(--secondary);
    border-radius: 4px;
    padding: 0.5em;
    margin-right: 1em; /* FIREFOX ONLY */
}