-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommon.css
146 lines (121 loc) · 2.42 KB
/
common.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
140
141
142
143
144
145
146
#navigation {
background-color: rgb(70, 102, 216) !important;
}
.heading {
font-family: 'Sigmar One', cursive;
color: white !important;
font-size: 25px;
margin-left: 5px;
}
.navLinks {
margin-left: 45%;
}
.navItems {
margin: 0px 25px;
}
.navItems a {
font-size: 20px;
padding: 20px 0px;
}
.navItems .other-links {
color: white !important;
}
.navItems a:hover {
color: #85b0be !important;
font-weight: bold;
}
.navItems .active {
color: #85b0be !important;
font-weight: bold;
border: 3px solid;
}
.custom-toggler.navbar-toggler {
border-color: white;
}
section#footer {
background-color: rgba(5, 42, 62, 1);
margin: 0;
color: #fff;
}
section.section {
margin: 0;
padding: 80px 0 60px 0;
}
.align-center {
text-align: center;
}
ul.social-network {
list-style: none;
display: inline;
margin-left: 0 !important;
padding: 0;
}
ul.social-network li {
display: inline;
margin: 0 5px;
}
.social-network a.icoYt:hover {
background-color: #e52d27;
}
.social-network a.icoLinkedin:hover {
background-color: #2940d3;
}
.social-network a.icoInstagram:hover {
background-color: #ff449f;
}
.social-circle li a {
display: inline-block;
position: relative;
margin: 0px 10px 0 10px;
-moz-border-radius: 50%;
-webkit-border-radius: 50%;
border-radius: 50%;
text-align: center;
width: 70px;
height: 70px;
font-size: 30px;
padding-top: 10px;
background: #85b0be;
}
.social-circle li i {
margin: 0;
line-height: 50px;
text-align: center;
}
.social-circle li a:hover i, .triggeredHover {
-moz-transform: rotate(360deg);
-webkit-transform: rotate(360deg);
-ms--transform: rotate(360deg);
transform: rotate(360deg);
-webkit-transition: all 3.2s;
-moz-transition: all 0.2s;
-o-transition: all 0.2s;
-ms-transition: all 0.2s;
transition: all 0.8s;
}
.social-circle i {
color: #fff;
-webkit-transition: all 0.8s;
-moz-transition: all 0.8s;
-o-transition: all 0.8s;
-ms-transition: all 0.8s;
transition: all 0.8s;
}
@media screen and (max-width: 1190px) {
.navLinks {
margin-left: 40%;
}
}
@media screen and (max-width: 1090px) {
.navLinks {
margin-left: 33%;
}
}
@media screen and (max-device-width: 991px) {
.navLinks {
margin-left: 0;
}
.navItems a {
text-align: center;
}
}