-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
105 lines (98 loc) · 1.99 KB
/
Copy pathstyle.css
File metadata and controls
105 lines (98 loc) · 1.99 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
*{
margin: 0;
padding: 0;
}
body{
font-family: 'Raleway', sans-serif;
overflow-y: scroll;
overflow-x: hidden;
}
p{
font-size: 14px;
}
/*=========== Header ===========*/
.header{
background-image: url("../images/header-bg.jpg");
background-attachment: fixed;
background-repeat: no-repeat;
background-position: 50% 50%;
background-size: cover;
-moz-background: cover;
-o-background: cover;
-webkit-background: cover;
}
.header-overlay{
background-color: rgba(31, 31, 31, 0.75);
}
.logo{
padding-bottom: 50px;
}
.header-text h1{
color: #fff;
font-size: 35px;
font-weight: 300;
line-height: 45px;
padding-top: 30px;
text-transform: uppercase;
}
.header-text p{
color: #fff;
font-size: 17px;
line-height: 28px;
font-weight: 300;
}
.header-btns{
margin-top: 90px;
margin-bottom: 50px;
}
.btn-download,
.btn-download:active,
.btn-download:focus,
.btn-download:visited{
background: transparent;
border-color: #129cf3;
padding-top: 10px;
padding-bottom: 10px;
padding-left: 30px;
padding-right: 30px;
font-size: 19px;
text-transform: uppercase;
border-radius: 6px;
transition: all 1s;
-webkit-transition: all 0.7s;
-moz-transition: all 0.7s;
-o-transition: all 0.7s;
}
.btn-download:hover{
background-color: #123cf3;
color: #fff;
}
.btn-tour,
.btn-tour:focus,
.btn-tour:active,
.btn-tour:visited{
color: #a9adb0;
margin-left: 20px;
text-transform: uppercase;
font-size: 19px;
font-weight: 500;
background: transparent;
transition: all 1s;
-webkit-transition: all 0.7s;
-moz-transition: all 0.7s;
-o-transition: all 0.7s;
}
.btn-tour:hover{
color: #fff;
}
.btn-tour i{
font-size: 20px ;
padding-left: 5px;
color: #129cf3;
}
.header-iphone img{
width: 100%;
}
.about-us{
background-color: #fff;
}