-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
106 lines (89 loc) · 1.43 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
html,
body {
height: 100%;
background-color: #222526;
}
#content {
position: relative;
width: 100%;
height: 100%;
}
.text-white {
color: white;
}
.fill-height {
height: 100%;
}
.logo-container {
height: 100%;
}
.logo {
height: 100%;
}
.text-container {
float: left;
width: 50%;
height: 100%;
}
.iphone-container {
position: relative;
float: left;
width: 50%;
height: 100%;
}
.iphone {
background: url(img/iphone.png);
background-repeat: no-repeat;
background-size: contain;
background-position: center;
/*width: 295px;*/
height: 500px;
margin: 4% auto;
position: relative;
}
.android {
background: url(img/android.png);
background-repeat: no-repeat;
background-size: contain;
background-position: center;
/*width: 295px;*/
height: 500px;
margin: 4% auto;
position: relative;
}
.center {
margin: auto;
}
.height-10 {
height: 10%;
align-items: center;
}
.height-20 {
height: 20%;
align-items: center;
}
.height-25 {
height: 25%;
align-items: center;
}
.height-50 {
height: 50%;
align-items: center;
}
.height-70 {
height: 70%;
align-items: center;
}
.text {
color: #ffffff;
font-size: 1.2em;
font-family: "lato", sans-serif;
}
.text-note {
color: #ffffff;
font-size: 0.75em;
font-family: "lato", sans-serif;
}
.center-text {
text-align: center;
}