-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
138 lines (90 loc) · 2.76 KB
/
style.css
File metadata and controls
138 lines (90 loc) · 2.76 KB
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
@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: 0.8rem;}
.navbar li{padding-right: 20px;}
.nav-link{font-size: 1.1em;}
.carousel img{width: 100%;height: 100%;}
.carousel-caption{position: absolute;top:50%;transform: translateY(-50%);}
.carousel-caption h1{font-size: 500%;text-transform: uppercase;text-shadow: 1px 1px 15px #000;}
.carousel-caption h3{font-size: 200%;font-weight: 500;text-shadow: 1px 1px 10px #000;padding-bottom: 1rem;}
.btn-primary{background-color: #6648b1;border:1px solid #563d7c;}
.btn-primary:hover{background-color: #56347c;border:1px solid #563d7c;}
.jumbotron{padding:1rem;border-radius: 0px;}
.padding{padding:2rem;}
.welcome{width: 75%;margin:0 auto;}
.welcome hr{border-top: 2px solid #b4b4b4;width: 95%;margin-top: .3rem;margin-bottom: 1rem;}
.fa-code{color: #e54d26;font-size: 4em;margin:1rem;}
.social a{font-size: 4.5em;padding: 3rem;}
.fa-facebook{color: #3b5998;}
.fa-twitter{color: #00aced;}
.fa-google-plus-g{color: #dd4b39}
.fa-youtube{color: #bb0000;}
.fa-instagram{color: #517fa4;}
footer{color: #d5d5d5;background-color: #3f3f3f;padding-top: 2rem;}
hr.light{width: 75%;border-top: 1px solid #d5d5d5;}
.figure{background-image: url('img/mac.png')}
/*---Media Queries --*/
@media (max-width: 992px) {
}
@media (max-width: 768px) {
}
@media (max-width: 576px) {
}
/*---Firefox Bug Fix --*/
.carousel-item {
transition: -webkit-transform 0.5s ease;
transition: transform 0.5s ease;
transition: transform 0.5s ease, -webkit-transform 0.5s ease;
-webkit-backface-visibility: visible;
backface-visibility: visible;
}
/*--- Fixed Background Image --*/
figure {
position: relative;
width: 100%;
height: 60%;
margin: 0!important;
}
.fixed-wrap {
clip: rect(0, auto, auto, 0);
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
#fixed {
background-image: url('img/mac.png');
position: fixed;
display: block;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-size: cover;
background-position: center center;
-webkit-transform: translateZ(0);
transform: translateZ(0);
will-change: transform;
}
/*--- Bootstrap Padding Fix --*/
[class*="col-"] {
padding: 1rem;
}
/*
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) { ... }
*/