-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
110 lines (85 loc) · 1.63 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
95
96
97
98
99
100
101
102
103
104
105
106
107
@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,700');
html,body{
height: 100%;
width: 100%;
font-family: 'Poppins',sans-serif;
color: #222;
}
.navbar{
padding: .8rem;
}
.navbar-nav li{
padding-right: 1.3rem;
}
.nav-link{
font-size: 1.1em !important;
}
.carousel-inner img{
padding-left: 25%;
padding-right: 25%;
width:100%;
height:100%;
}
.carousel-caption{
position:absolute;
top: 70%;
transform: translateY(-70%)
}
.carousel-caption h1{
font-size: 300%;
text-transform: uppercase;
text-shadow: 1px 1px 5px #222;
}
.carousel-caption h3{
font-size: 200%;
font-weight: 500;
text-shadow: 1px 1px 5px #222;
}
.jumbotron{
padding:1rem;
border-radius: 0;
}
.padding{
padding-bottom: 2rem;
}
.welcome{
margin:0 auto;
}
.social a{
font-size: 4.5em;
padding: 3rem;
}
.fa-facebook{
color: #3b5998;
}
.fa-linkedin-in{
color: #0e76a8;
}
.fa-github{
color: #211f1f;
}
.fa-instagram{
color:#5851DB ;
}
.fa-facebook:hover,.fa-github:hover,.fa-linkedin-in:hover,.fa-instagram:hover{
color:#d5d5d5;
}
/*---Media Queries --*/
@media (max-width: 992px) {
}
@media (max-width: 768px) {
}
@media (max-width: 576px) {
}
/*
Extra small (xs) devices (portrait phones, less than 576px)
No media query since this is the default in Bootstrap
Small (sm) devices (landscape phones, 576px and up)
@media (min-width: 576px) { ... }
Medium (md) devices (tablets, 768px and up)
@media (min-width: 768px) { ... }
Large (lg) devices (desktops, 992px and up)
@media (min-width: 992px) { ... }
Extra (xl) large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }
*/