forked from Tzikas/PromiseMeDinner
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
78 lines (66 loc) · 1.12 KB
/
style.css
File metadata and controls
78 lines (66 loc) · 1.12 KB
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
*{
transition: all .4s;
}
img {
width: 200px;
}
li {
font-size: 16px;
line-height: 1.5rem;
color: #545454;
/* text-transform: capitalize; */
}
label {
line-height: 50px;
font-family: sans-serif;
}
.steps {
display: flex;
}
#table {
height: 200px;
display: flex;
justify-content: space-evenly;
}
ol {
width:33%;
position:relative;
list-style: none;
counter-reset: li;
margin: 0;
padding: 0;
}
li::before {
content: counter(li); color: white;
display: inline-block; width: 1em;
margin-left: -.5em;
background:#93b874;
padding-left: .5em;
margin: .2em;
}
li {counter-increment: li}
p{
}
button {
animation: enter 2s forwards;
position: fixed;
left: 50%;
top: 50%;
font-size:3rem;
padding:1rem;
background: #eeeeee;
color:black;
transition: all.2s;
}
button:hover{
color:white;
background:#333;
}
@keyframes enter {
from {
transform: rotateX(3000deg) translate(-50%, -50%) scale(0);
}
to {
transform: rotateX(0deg) translate(-50%, -50%) scale(1);
}
}