-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.css
More file actions
98 lines (86 loc) · 1.34 KB
/
main.css
File metadata and controls
98 lines (86 loc) · 1.34 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
95
96
97
98
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
height: 100vh;
width: 100vw;
display: flex;
justify-content: center;
align-items: center;
font-family: "Arial";
}
.wrapper {
display: flex;
flex-direction: row;
height: 300px;
width: 80%;
}
.service-wrapper {
background: #F4F6F6;
flex: 1;
display: flex;
justify-content: space-between;
flex-direction: column;
padding: 50px;
overflow: hidden;
cursor: pointer;
transition: all 0.2s linear;
}
.service-wrapper:hover {
color: #FFF;
}
.service-wrapper div {
display: flex;
justify-content: space-between;
align-items: center;
position: relative;
}
.service-wrapper div h3 {
z-index: 1;
}
.service-wrapper p {
line-height: 23px;
z-index: 1;
}
.arrow {
height: 40px;
width: 40px;
border-radius: 100px;
}
#arrow-one {
background-color: #0311C6;
position: absolute;
right: 0;
}
#arrow-two {
background-color: #00C569;
position: absolute;
right: 0;
}
#arrow-three {
background-color: #FD7D01;
position: absolute;
right: 0;
}
.arrow-small {
height: 40px;
width: 40px;
border-radius: 100px;
z-index: 10;
}
#arrow-one-small {
background-color: #172ACC;
}
#arrow-two-small {
background-color: #15C976;
}
#arrow-three-small {
background-color: #FD891C;
}
svg {
position: absolute;
z-index: 1000;
right: 12px;
}