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

changelog.css « changelog « combined « Extensions - github.com/Anarios/return-youtube-dislike.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e7aa95c7a7928e767d58ede666b831b9cb770c9a (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
/* Variables */
:root {
  --primary: #ff4444;
  --accent: #581111;

  --background: #111;
  --secondary: #272727;
  --tertiary: #424242;
  --lightGrey: #999;
  --white: #fff;
}

/* Window Styling */
html,
body {
  background-color: var(--background);
  color: var(--white);
  min-width: 300px;
  margin: 0;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 16px;
}

img {
  border-radius: 1rem;
  box-shadow: 0 0 2rem 0 black;
  margin: 1rem -1rem;
}

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%); */
  transition: 0.4s;
  font-size: 16px;
}

button:hover {
  background: #444;
}
.container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 4rem 0;
}