-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtack.css
82 lines (79 loc) · 1.3 KB
/
tack.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
:root{
--body:#8c6eff;
--cont:#eceff1;
--line:#651fff;
--text:#007bfd;
--light:#c5cae9;
}
*{
margin:0;
padding: 0;
box-sizing: border-box;
}
body{
width: 100%;
min-height: 100vh;
background: var(--body);
display: flex;
justify-content: center;
align-items: center;
line-height: 1.4;
}
.dee_tracking_container{
width: 1100px;
max-width: 100%;
padding: 40px;
margin: 0 30px;
background:var(--cont);
position:relative;
}
.dee_details{
display: flex;
gap: 1em;
flex-wrap: wrap;
justify-content: space-between;
}
.ordersdee span{
text-transform: uppercase;
}
.ordersdee h1{
text-transform: uppercase;
}
.ordersdee span{
color: var(--txt);
}
.orderdate p{
font-size: 1.1rem;
}
.track {
display: flex;
}
.track{
margin: 4em 0 8em;
}
#progress_dee{
list-style:none;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
gap: 1em;
position: relative;
}
#progress_dee li{
width: 50%;
position: relative;
}
#progress_dee li::before{
content: '\2713';
position: absoulte;
display: flex;
justify-content: center;
width: 50px;
align-items: center;
height: 50px;
background:var(--line);
color: #fff;
border-radius: 50%;
z-index: 11111;
}