-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnormalize.css
89 lines (57 loc) · 1.41 KB
/
normalize.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
.wrng-enter-active { transition: background 1s }
.wrng-leave-active { transition: background 0.75s; }
.wrng-enter { background: red, color: white; }
.wrng-leave-to { background: white, color: black; }
.corec-enter-active { transition: background 1s }
.corec-leave-active { transition: background 0.75s; }
.katex-item-enter-active { transition: opacity 0.75s }
.katex-item-leave-active { transition: opacity 0.75s; }
.katex-item-enter, .katex-item-leave-to { opacity: 0; }
.fadeslow-enter-active { transition: opacity 2s }
.fadeslow-leave-active { transition: opacity 2s; }
.fadeslow-enter, .fadeslow-leave-to { opacity: 0; }
.fade-enter-active { transition: opacity 1s }
.fade-leave-active { transition: opacity 0.75s; }
.fade-enter, .fade-leave-to { opacity: 0; }
input, input:focus, input:disabled, input:disabled:focus {
border: none;
outline: none;
}
body, html {
height: 100%;
width: 100%;
}
body {
position: relative;
}
button {
border: none;
}
button:hover {
cursor: pointer;
}
input:disabled {
background: inherit;
}
img {
max-width: 100%;
max-height: 100%;
}
.app-container {
width: 100%;
height: 100%;
font-size: 64px;
}
.app-container > * {
width: 100%;
height: 100%;
}
.flash-number {
font-size: 166px;
color: #48bb78;
}