-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.css
94 lines (74 loc) · 1.26 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
*{
margin: 0;
padding: 0;
}
.navbar-nav{
font-size: 20px;
}
.progress{
height: 35px;
border-radius: 50px;
transition: all 0.7s ease;
}
.navbar{
position: sticky;
top: 0;
z-index: 1;
}
.progress:hover{
transform: scale(1.1);
}
.card{
transition: all 0.5s ease;
}
.card img{
height: 200px;
width: 200px;
margin: auto;
}
/* Fixed/sticky icon bar (vertically aligned 50% from the top of the screen) */
.icon-bar {
position: fixed;
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
.icon-bar a {
display: block;
text-align: center;
padding: 16px;
transition: all 0.3s ease;
color: white;
font-size: 20px;
}
.icon-bar a:hover {
background-color: #000;
}
.facebook {
background: #3B5998;
color: white;
}
.twitter {
background: #55ACEE;
color: white;
}
.google {
background: #dd4b39;
color: white;
}
.linkedin {
background: #007bb5;
color: white;
}
.youtube {
background: #bb0000;
color: white;
}
.card:hover{
transform: scale(1.1);
box-shadow: 1px 2px 12px burlywood;
}
.btn:hover{
color: cornflowerblue;
}