-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathelm.css
125 lines (107 loc) · 1.91 KB
/
elm.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
* {
box-sizing: border-box;
}
h1 {
font-size: 40pt;
color : #FF5794;
}
body {
margin : auto;
background: #242424;
color : #F9F5DD;
font-family : Arial;
text-align : center;
font-size: 12pt;
}
.button-class {
background-color : #B2E64C;
border : 2px solid #B2E64C;
border-radius : 5px;
padding : 5px;
margin : 10px;
font-size: 20pt;
transition: box-shadow 0.1s;
}
.button-class:hover {
box-shadow: 0 0px 20px 0 rgba(255, 255, 255, 0.5), 0 0px 25px 0 rgba(255, 255, 255, 0.4);
}
.row {
width : 100%;
height : 500px;
}
.col {
align: center;
padding: 10px;
float : left;
width : 50%;
height: 100%;
display : block;
padding : 10px;
}
.col img {
padding : 15px;
border : 1px solid #B2E64C;
border-radius: 5px;
background-color : #B2E64C;
max-width : 100%;
max-height : 100%;
}
.col::after {
content : "";
clear : both;
display: table;
}
.row::after {
content : "";
clear: both;
display : table;
}
.infobar {
color : #66CEE1;
padding : 5px;
}
ol.done {
display: table;
vertical-align: middle;
margin: 0 auto;
text-align: center;
width: 80%;
list-style: none;
counter-reset : rating;
}
ol.done li img {
float : right;
width : 120px;
height: 120px;
}
ol.done li {
text-shadow: 2px 2px 5px #000000;
width: 100%;
font-size: 20pt;
counter-increment : rating;
background-color: #66CEE1;
border : 1px solid #66CEE1;
border-radius: 5px;
margin: 10px;
padding : 10px;
}
ol.done li::before {
float: left;
content : counter(rating);
font-size : 40pt;
}
ol.done li::after {
content: "";
clear: both;
display: table;
}
.choices-area {
text-align : center;
}
button.main {
position: absolute;
top:50%;
left:50%;
margin: 0 auto;
transform: translate(-50%,-50%);
}