forked from simplonco/algorithm-thinking
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
94 lines (84 loc) · 1.61 KB
/
style.css
File metadata and controls
94 lines (84 loc) · 1.61 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
body {
margin: 0;
font-family: sans-serif;
}
#dark-filter {
z-index: 0;
/*box-shadow: inset 100vh 100vw 10px rgba(0, 0, 0, 0.7);*/
/*background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5));*/
height: 100vh;
width: 100vw;
box-sizing: border-box;
}
.container-plats {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
}
.plat {
border: 1px solid rgb(213, 213, 213);
padding: 10px;
border-radius: 2px;
}
#panier-container {
z-index: inherit;
width: 50%;
border: 1px solid rgb(213, 213, 213);
display: none;
padding: 20px;
margin: 20px 0;
}
.plat-panier {
display: flex;
align-items: center;
justify-content: space-between;
border-bottom: 1px solid rgb(228, 228, 228);
}
#achat-container {
display: none;
position: absolute;
padding: 30px;
z-index: 150;
box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
text-align: center;
top: 30%;
left: 50%;
transform: translateX(-50%);
color: #fff;
background-color: #e69825;
border-radius: 5px;
}
.bank-account-container {
position: relative;
width: 80%;
height: 30px;
/*border: 1px solid rgb(228, 228, 228);*/
border-radius: 3px;
margin: 0 auto;
background-color: rgba(0, 0, 0, 0.21);
}
.bank-account-status {
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
background-color: rgb(83, 200, 48);
animation-duration: 10s;
animation-timing-function: ease;
animation-delay: 0.5s;
animation-fill-mode: forwards;
}
@keyframes emptyAccount {
0% {
background-color: rgb(83, 200, 48);
width: 100%;
}
50% {
background-color: rgb(205, 214, 34);
}
100% {
background-color: rgb(222, 32, 32);
width: 0%;
}
}