-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
94 lines (94 loc) · 1.66 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
h1{
font-size: 1px;
}
h2{
text-align: center;
}
.btn-default, .btn-default:active, .btn-default:visited, .btn-default:active:focus, .btn-default:active:visited, .btn-default:focus {
color: #fff;
background-color: #FF6C00 !important;
border: 1px #FF9A4F solid;
}
.btn-default:hover{
background-color: rgba(255, 108, 0, 0.85) !important;
color: #fff;
border: 1px #FFC091 solid;
}
a.btn-default{
margin-top: 15px !important;
margin-bottom: 15px !important;
}
.jumbotron{
background: #454545;
}
#footer{
width: 100%;
height: 150px;
margin-top: 50px;
bottom: 0px;
background: #454545;
}
#beta{
color: #fff;
font-weight: bold;
}
#hero-img{
background: url('images/hero.png') no-repeat #454545;
background-size: contain;
margin: auto;
width: 70%;
height: 400px;
}
#about-row{
background: url('images/orange_bg.png') no-repeat;
background-size: 100% 172px;
}
#about-row > div{
margin: 50px 35px;
}
#about-row p{
padding: 20px 0px;
font-weight: bold;
color: #fff;
}
.iphone-image{
display: block;
margin-top: 30px;
width: 100%;
transition: transform .3s linear;
}
.iphone-image:hover{
transform: scale(1.1);
}
@media screen and (max-width: 1600px) {
#hero-img{
margin: auto;
height: 300px;
width: 80%;
}
}
@media screen and (max-width: 1200px) {
#hero-img{
height: 250px;
width: 80%;
margin: auto;
}
}
@media screen and (max-width: 900px) {
#hero-img{
height: 200px;
width: 90%;
margin: auto;
}
.iphone-image:hover{
transform: scale(1.0);
}
}
@media screen and (max-width: 680px) {
#hero-img{
height: 0px;
}
.iphone-image:hover{
transform: scale(1.0);
}
}