forked from borgbean/euler-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylesheet.css
83 lines (76 loc) · 1.6 KB
/
stylesheet.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
body {
margin: 0;
}
[ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak {
display: none !important;
}
#problems {
list-style: none;
padding: 0;
margin: 0;
}
.problem {
padding: 1px 0px;
padding-left: 10px;
border: 0px;
border-top: 1px;
border-style: solid;
border-color: black;
}
.problem:last-of-type {
border-bottom: 1px solid black;
}
@-webkit-keyframes incorrect {
0% {background-color: rgba(255, 255, 255, 1);}
100% {background-color: rgba(255, 0, 0, .15);}
}
@keyframes incorrect {
0% {background-color: rgba(255, 255, 255, 1);}
100% {background-color: rgba(255, 0, 0, .15);}
}
.problem_error {
background-color: rgba(255, 0, 0, .15);
/* -webkit-animation: incorrect 0.25s;
animation: incorrect 0.25s;*/
}
@-webkit-keyframes correct {
0% {background-color: rgba(255, 255, 255, 1);}
100% {background-color: rgba(0, 255, 0, .15);}
}
@keyframes correct {
0% {background-color: rgba(255, 255, 255, 1);}
100% {background-color: rgba(0, 255, 0, .15);}
}
/*.problem_correct {
background: rgba(0, 255, 0, .15);
/*-webkit-animation: correct 0.25s;
animation: correct 0.25s;*/
/*
}*/
.problem_control {
float: right;
}
#global_controls {
/*vertical-align: text-bottom;*/
/*height: 30px;*/
padding-top: 3px;
display: table;
white-space: nowrap;
padding: 3px 10px;
}
#global_controls * {
vertical-align: middle;
}
#total_time {
display: table-cell;
min-width: 3.25em;
padding-right: 3px;
}
#run_all {
display: table-cell;
}
#progressbar {
height: 1em;
display: table-cell;
width: 100%;
}