-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
98 lines (98 loc) · 2.24 KB
/
style.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
@import url('https://fonts.cdnfonts.com/css/vampire-wars');
@import url('https://fonts.cdnfonts.com/css/kuman');
@import url('https://fonts.cdnfonts.com/css/rint-basic');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Arabic:wght@100..900&family=Reem+Kufi:wght@400..700&display=swap');
a:hover {
cursor: url(https://cursor.in/assets/pointinghand.svg), auto;
}
i:hover {
cursor: url(https://cursor.in/assets/screenshotselection.svg), auto;
}
small:hover {
cursor: url(https://cursor.in/assets/closedhand.svg), auto;
}
span:hover {
cursor: url(https://cursor.in/assets/copy.svg), auto;
}
a.navbar-brand:hover {
cursor: url(https://cursor.in/assets/zoomin.svg), auto;
}
.roadmap {
padding: 30px 50px;
}
.roadmap .point {
display: flex;
flex-direction: column;
padding: 10px 50px;
position: relative;
}
.roadmap .point:first-child .point-index {
top: auto;
bottom: 0;
transform: translate(-50%, 2px) !important;
}
.roadmap .point:last-child .point-index {
top: 0;
transform: translate(50%, -2px) !important;
}
.roadmap .point:not(:last-child) {
border-bottom: 2px solid gold;
}
.roadmap .point:nth-child(odd) {
align-items: flex-start;
}
.roadmap .point:nth-child(odd):not(:first-child) {
border-left: 2px solid gold;
}
.roadmap .point:nth-child(odd) .point-index {
left: 0;
transform: translate(-50%, -50%);
}
.roadmap .point:nth-child(even) {
align-items: flex-end;
}
.roadmap .point:nth-child(even):not(:last-child) {
border-right: 2px solid gold;
}
.roadmap .point:nth-child(even) .point-index {
right: 0;
transform: translate(50%, -50%);
}
.roadmap .point .point-index {
position: absolute;
top: 50%;
width: 40px;
height: 40px;
background: #151317;
border: 2px solid gold;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 23px;
font-weight: bold;
}
.roadmap .point .point-label {
flex: 1 0 100%;
width: 100%;
font-size: 14px;
margin-bottom: 5px;
}
@media (min-width: 641px) {
.roadmap .point .point-label {
flex: 1 0 50%;
width: 50%;
}
}
.roadmap .point .point-text {
flex: 1 0 100%;
width: 100%;
font-size: 12px;
color: #cccccc;
}
@media (min-width: 641px) {
.roadmap .point .point-text {
flex: 1 0 50%;
width: 50%;
}
}