-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.css
139 lines (112 loc) · 2.36 KB
/
project.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
@media all and (max-width: 768px) {
.project-content {
padding: 47px 20px 45px 20px !important;
}
}
.project-title {
text-align: center;
text-transform: uppercase;
font-family: 'montserrat', sans-serif;
font-weight: bold;
margin-bottom: 70px;
word-spacing: 2px;
letter-spacing: 1px;
}
.project-content {
padding: 0px 70px 0px 50px;
}
.project-content h4 {
font-family: 'poppins', sans-serif;
margin-bottom: 15px;
font-size: 20px;
}
.project-img {
max-width: 100%;
font-family: 'poppins', sans-serif;
}
.project-icon a {
padding-left: 18px;
font-size: 20px;
color: rgb(67, 67, 67);
font-family: 'poppins', sans-serif;
}
.project-label {
font-family: 'poppins', sans-serif;
font-size: 17px;
color: rgb(68, 68, 68);
padding-bottom: 5px;
border-bottom: 1px dotted rgb(97, 97, 97);
}
.project-label:last-child {
border-bottom: none;
}
.project-info-para {
font-family: 'poppins', sans-serif;
font-size: 16px;
text-align: justify;
color: rgb(69, 69, 69);
}
.project-label label {
color: black !important;
}
.project-url {
color: rgb(0 161 113) !important;
font-size: 18px;
text-decoration: none;
list-style: none;
font-weight: 500;
}
/* -**************************** project-2.php ******************* */
.owl-theme .owl-nav {
margin-top: 10px;
visibility: visible !important;
}
.owl-nav .owl-prev {
position: absolute;
top: 40%;
left: 15px;
height: 42px;
width: 42px;
box-shadow: 0px 0px 9px -4px #4b4b4b;
border-radius: 50% !important;
background: whitesmoke !important;
opacity: 0;
transition: all 0.2s ease;
}
.owl-prev span {
font-size: 53px;
position: absolute;
top: -65%;
left: 11px;
color: black;
}
.owl-nav .owl-next {
position: absolute;
top: 40%;
right: 15px;
height: 42px;
width: 42px;
box-shadow: 0px 0px 9px -4px #4b4b4b;
border-radius: 50% !important;
background: whitesmoke !important;
opacity: 0;
transition: all 0.2s ease;
}
.owl-next span {
font-size: 53px;
position: absolute;
top: -65%;
right: 11px;
color: black;
}
.owl-dots {
position: absolute;
bottom: 12px;
left: 50%;
}
.owl-theme:hover .owl-nav .owl-prev {
opacity: 1;
}
.owl-theme:hover .owl-nav .owl-next {
opacity: 1;
}