-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
65 lines (57 loc) · 1.01 KB
/
style.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
html {
position: relative;
height: 100%;
padding: 0;
margin: 0;
padding-top:0px;
background: url("background.jpg");
background-size: cover;
color: white;
}
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
body {
font-family: 'Arial', sans-serif;
position:relative;
height:100%;
padding: 0;
margin: 0;
width: 100%;
}
.block {
display:table;
width: 50%;
position: absolute;
height: 100%;
}
.block-cell {
display: table-cell;
vertical-align: middle;
}
.app-icon {
height: 50%;
width: 50%;
background: url("appicon-clear.png");
margin-right: auto;
margin-left: auto;
background-size: cover;
background-position: center;
}
.title {
margin-top: 10px;
text-align: center;
font-size: 40px;
}
.iphone {
height:600px;
width:auto;
background: url("iphone.png");
margin-right: auto;
margin-left: auto;
background-size: contain;
background-position: center;
background-repeat: no-repeat;
}