-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
71 lines (71 loc) · 1.45 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
/*Index Page Start*/
body{
background-color: #8a0022;
}
.site-font{
font-family: 'Inter', sans-serif;
}
.nav-link-font{
padding: 20px 10px;
font-size: 14px;
text-decoration: none!important;
line-height: 20px;
font-weight: 500;
text-transform: uppercase;
color: #333 !important;
}
.footer{
padding: 2rem 1rem;
margin: 0 -1rem;
width: calc(100% + 2rem);
background-color: var(--color-black);
color: var(--color-light-bg);
}
/*Index Page End*/
.line{
width: 87px;
border: 2px solid #8a0022 !important;
}
.about-text{
margin: 1.5rem 0;
font-family: 'Inter';
font-style: normal;
font-weight: 400;
font-size: 18px;
line-height: 26px;
letter-spacing: -.03em;
}
.timeline {
list-style-type: none;
display: flex;
flex-direction: column;
position: relative;
}
.timeline-item {
display: flex;
justify-content: flex-start;
margin-bottom: 20px;
position: relative;
}
.timeline-icon {
width: 28px;
height: 28px;
background-color: #8a0022;
border-radius: 50%;
position: absolute;
left: 12px;
top: 0;
}
.timeline-content {
border-left: 2px solid transparent;
padding-left: 40px;
position: relative;
}
.timeline-content::before {
content: '';
position: absolute;
top: 30px;
bottom: 0;
left: 18px;
width: 2px;
background-color: #8a0022;}