-
Notifications
You must be signed in to change notification settings - Fork 0
/
convertTailwind.css
66 lines (55 loc) · 1.1 KB
/
convertTailwind.css
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
@tailwind base;
@tailwind components;
@tailwind utilities;
.passive {
transform: translateX(101%);
bottom: 20px;
right: 0px;
}
.active {
transform: translateX(-2%);
}
.question-number-input {
width: 150px;
}
.message-box {
transform: translateX(110%);
top: 10rem;
right: 0px;
z-index: 22;
}
.message-box.active {
transform: translateX(0%);
}
.question-box {
transition: all 150ms ease-in-out;
}
.question-box.false {
filter: brightness(90%);
background: #a84448;
color: #eeeeee;
pointer-events: none;
}
.question-box.true {
filter: brightness(90%);
background: #539165;
color: #eeeeee;
pointer-events: none;
}
.question-box.result-visible {
filter: brightness(90%);
background: #2c3333;
color: #eeeeee;
pointer-events: none;
}
.reply-button.false,
.reply-button.true {
display: none !important;
}
.user-answer.false,
.user-answer.true {
background: transparent;
color: #eeeeee !important;
margin: 0.25rem 0;
padding: 0 !important;
}