forked from wrjac/backpacker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
90 lines (69 loc) · 1.25 KB
/
styles.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
html {
max-height: height: 100vh;
background-color: whitesmoke;
}
#logo {
padding-left: 10px;
color: white;
}
#logo:hover {
color: darkgrey;
}
.login, .go, .about {
padding-right: 50px;
}
body {
background-color: whitesmoke;
font-weight: bold;
font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
overflow-y: hidden;
}
.jumbotron {
margin-top: -20px;
height: 96vh;
background-image: url(img/mountain-1462655.jpg);
background-position: center;
background-size: cover;
background-repeat: no-repeat;
}
.jumbotron p {
text-align: center;
}
.contactsection1 {
margin-top: 30px;
margin-left: 30px;
}
.copyright {
position: absolute;
color: whitesmoke;
bottom: 0;
margin-left: 15px;
margin-bottom: 5px;
}
body {
background-color: #2c2c2c;
}
/*Screen size responsiveness*/
@media (min-width: 1200px) {
.jumbotron {
height: 96vh;
}
}
@media (max-width: 768px) {
#logo {
padding-left: 20px;
}
.navbar-toggle {
max-width: 35px;
display: inline-block;
float: right;
}
}
@media (max-width:400px) {
.jumbotron {
height: 96vh;
}
#logo {
padding-left: 10px;
}
}