aboutsummaryrefslogtreecommitdiff
path: root/picarones-elm/document.css
blob: e4379b6450d51aafec0bc16053fa19e9f39434d7 (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
/*@font-face {
    font-family: "sharetech";
    src: url('{{ "/assets/ShareTech-Regular.ttf" | prepend: site.baseurl }}');
}*/

body {
  color: white;
  background-color: #222;
  text-align: center;
}

img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: contain;
  width: 100%;
  height: 100%;
}


.slides {
  width: 100%;
  height: 90vh;
  position: relative;
}

.controls {
  margin: auto;
}

button, .button {
  border-radius: 4px;
  margin: 1em;
  padding: 0.3em;
  padding-right: 0.5em;
  padding-left: 0.5em;
  background-color: #fb0;
  border: none;
  box-shadow: 0px 0px 7px 7px #fb03;
  font-size: 20px;
  color: black !important;
  text-decoration: none;
  cursor: pointer;
  transition: 0.2s;
  font-family: "sharetech";
}

.button a {
    color: #000;
}

button:enabled:hover, .button:hover {
  box-shadow: 0px 0px 7px 7px #fb09;
}

button:enabled:active {
  background-color: #615400;
  color: #eee;
}

button:disabled {
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  cursor: not-allowed;
}

button.pressed {
  background-color: #615400;
  color: #eee;
}