-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy path_service.scss
91 lines (86 loc) · 1.39 KB
/
_service.scss
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
/* Services Item */
.services-item{
background: #fff;
margin: 15px 0;
padding: 30px;
border-radius: 4px;
text-align: left;
box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-webkit-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
.icon{
i{
font-size: 42px;
color: $preset;
}
}
.services-content{
h3{
font-weight: 600;
text-transform: uppercase;
margin-bottom: 10px;
a{
font-size: 18px;
color: #585b60;
&:hover{
color: $preset;
}
}
}
}
&:hover{
box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.08);
}
}
#service{
position: relative;
}
/* Container Outside Shape */
.container-outside {
position: absolute;
top: 0;
right: 0;
width: 47.1%;
height: 100%;
background: $preset;
overflow: hidden;
}
.heading{
padding-left: 30px;
}
.d-table {
display: table;
width: 100%;
height: 100%;
}
.dt-cell {
display: table-cell;
vertical-align: middle;
}
// Skills
.skill-area{
img{
border-radius: 4px;
}
}
.skills-section{
margin-top: 30px;
.progress-box{
h5{
color: #222222;
font-size: 14px;
text-transform: uppercase;
font-weight: 600;
}
}
.progress{
background: #f9f9f9;
height: 10px;
margin-bottom: 30px;
.progress-bar{
background: $preset;
}
}
}