-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
114 lines (92 loc) · 1.46 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
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
/*=====================HTML COMPONENTS=====================*/
body{
font-size: 18px;
line-height: 30px;
color: #ffffff;
font-family: Verdana;
margin: 0px 0px 0px 0px;
}
h3{
/* font-size: 50px;
line-height: 50px;
font-family: "Yellowtail";*/
}
/*=====================STYLES=====================*/
.section{
padding: 20px 0px 20px 0px;
}
.column{
float:left;
margin:0;
}
.clearfloat{
clear: both;
}
.title{
font-size: 50px;
line-height: 50px;
font-family: "Yellowtail";
padding-bottom: 20px;
}
.mobiletitle{
visibility: hidden;
}
.one-third{
width: 40%;
}
.two-thirds{
width: 59%;
}
.half{
width: 50%;
}
.phone{
width: 295px;
height: 600px;
background-image: url('iphone6.png');
margin-left: auto;
margin-right: auto;
}
.video{
padding: 72px 18px 71px 18px;
/*360 x 636*/
}
.video video{
width: 259px;
}
.description{
padding: 0px 5% 0px 5%;
text-align: left;
}
/*=====================COLOURS=====================*/
.green{
background-color: #1abc9c;
}
.navy{
background-color: #2c3e50;
}
.blue{
background-color: #2980b9;
}
/*=====================MEDIA QUERIES=====================*/
@media screen and (max-width: 700px) {
.column{
float:none;
width: 100%;
}
.hidemob{
visibility: hidden;
height: 1px;
}
.mobiletitle{
visibility: visible;
font-size: 50px;
line-height: 80px;
font-family: "Yellowtail";
text-align: center;
}
}
/*=====================UTILITIES=====================*/
/**{
border: 1px solid yellow;
}*/