forked from veleary/Week-1-FE-Eval
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
127 lines (108 loc) · 1.9 KB
/
main.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
/** {
border: 1px solid red;
box-sizing: border-box;
}
*/
html, body {
background: black;
background-color: black !important;
}
.show {
opacity: 1;
-webkit-transition: opacity 2s ease-in-out, top 2s;
transition: opacity 2s ease-in-out, top 2s;
}
#nav.show {
position: fixed;
z-index: 99;
width: 100%;
}
#body {
margin-top: -80px;
}
.hide {
opacity: 0;
-webkit-transition: opacity 2s ease-in-out, top 2s;
transition: opacity 2s ease-in-out, top 2s;
}
#nav {
background-color: black;
background-image: url(images/slowdown.png);
background-repeat: no-repeat;
background-position: center;
height: 75px;
width: 100%;
border-bottom: #f0eb6d solid 3px
}
.navbar-default {
background-color: black;
}
.fixed {
position: fixed;
z-index: 99;
}
#hero-image {
background-image: url(images/easytiger-fade-opt.png);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
width: 100%;
height: 770px;
}
.dotfix{
margin-left: -4px;
}
.section-header {
background-color: black;
background-repeat: no-repeat;
background-position: center;
height: 75px;
width: 100%;
border-top: #f0eb6d solid 3px;
border-bottom: #f0eb6d solid 3px;
margin: 20px 0;
}
#atmos {
background-image: url(images/atmosphere2.png);
background-size: 220px;
}
#food {
background-image: url(images/food.png);
background-size: 220px;
}
.col-lg-12 {
padding: 0;
}
.orange {
color: #f36d51 !important;
}
.center-img {
text-align: center;
}
.images {
margin: 15px;
text-align: center;
}
.images img {
max-height: 375px;
}
.margin {
margin: 0 15px;
}
.margin-footer-tiger {
margin: -10px 0px -3px 52px;
}
.margin-footer-text {
margin: 0 0px 0 45px;
}
#footer {
border-top: #f0eb6d solid 3px;
margin: 20px 0 0 0;
padding-top: 20px;
}
.footer-text {
color: #f36d51;
padding-left: 48px;
font-weight: bold;
text-decoration: none;
}