-
Notifications
You must be signed in to change notification settings - Fork 0
/
order.css
91 lines (78 loc) · 1.55 KB
/
order.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
h2{
text-align: center;
background-color: black;
color: white;
padding: 20px;
margin-top: 10px;
font-family:fantasy;
width: 100%;
margin-bottom: 1%;
}
.row{
width: 100%;
margin: 0px;
}
form{
padding: 20px;
color: white;
}
li span{
color: black !important;
background-color: rgb(255, 196, 0);
}
body{
background: url(images/coffee-beans-top-view-white-background-space-text_176474-5028.avif);
background-color: rgba(0, 0, 0, 0.406);
background-blend-mode: darken;
}
.submit{
text-align: center;
}
.container.step1{
max-width: 100%;
padding: 0px;
margin-top: 1%;
}
.btn {
padding: 1.1em 2em;
background: none;
border: 2px solid #fff;
font-size: 15px;
color: #131313;
cursor: pointer;
position: relative;
overflow: hidden;
transition: all 0.3s;
border-radius: 12px;
background-color: #ecd448;
font-weight: bolder;
box-shadow: 0 2px 0 2px #000;
}
.btn:before {
content: "";
position: absolute;
width: 100px;
height: 120%;
background-color: #ff6700;
top: 50%;
transform: skewX(30deg) translate(-150%, -50%);
transition: all 0.5s;
}
.btn:hover {
background-color: #4cc9f0;
color: #fff;
box-shadow: 0 2px 0 2px #0d3b66;
}
.btn:hover::before {
transform: skewX(30deg) translate(150%, -50%);
transition-delay: 0.1s;
}
.btn:active {
transform: scale(0.9);
}
#items{
background-color: rgb(255, 255, 255);
padding: 8px;
border-radius: 20px;
text-align: center;
}