summaryrefslogtreecommitdiff
path: root/static/kyselma.css
blob: 14c765357c02c4c8215d01cba571509afa024030 (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

.kysQuestion {
    display: flex;
    flex-direction: column;
    max-width: 25em;
    padding: 0.5em;
    border: 0.15em #fed solid;
}
.kysText { 
    align-self: center;
}
.kysScale {
    display: flex;
    width: 100%;
    resize: horizontal;
}
.kysScaleSpacer {
    flex-grow: 1;    
}
.kysNegative input {
    width: 100%;
}
.kysPositive input {
    width: 100%;
}
.kysCreateText input {
    width: 100%;
    resize: horizontal;
}
.kysCreateText { 
    width: 100%;
}

.kysNick::before {
  content: "Olet:";
  padding-right: 0.4em;
}

.kysNick {
    border: 0.1em solid;
    padding: 0.4em;
    position: fixed;
    top: 100vh;
    left: 100vw;
    transform: translate(-100%, -100%);
    display: block;
    background-color: #DAF;
}

.kysAlert {
    border: 0.4em solid;
    padding: 0.8em;
    display: block;
    background-color: #F55;
    border-top-color: #F97;
    border-left-color: #F96;
    border-right-color: #F13;
    border-bottom-color: #F14;
    position: fixed;
    top: 50vh;
    left: 50vw;
    transform: translate(-50%, -50%);
}

.kysTotal {
    align-self: center;
    font-size: xxx-large;
}

.kysSelectU1 {
  background: #faa;
}

.kysSelectU2 {
  background: #aaf;
}

.kysUser1::-webkit-slider-runnable-track, .kysUser1::-moz-range-track {
  background: #faa;
}

.kysUser2::-webkit-slider-runnable-track, .kysUser2::-moz-range-track {
  background: #aaf;
}

.kysUser1::-webkit-slider-thumb, .kysUser1::-moz-range-thumb {
  background: #c00;
}

.kysUser2::-webkit-slider-thumb, .kysUser2::-moz-range-thumb {
  background: #00c;
}