-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
121 lines (115 loc) · 1.83 KB
/
style.css
File metadata and controls
121 lines (115 loc) · 1.83 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
body{
overflow-x: hidden;
}
.heading{
background-color: #282957;
height:20vh;
color:white;
font-size: 5em;
overflow: hidden;
}
.Paperq{
padding-left:40%;
}
.logo{
background-image: url('img/cycle.jpg');
height:80vh;
}
button{
background-color: rgba(255, 255, 0255, 0.4);
height: 100px;
width: 300px;
margin-top: 20%;
border-radius: 20px;
margin-left: 20%;
font-size: 2em;
color:white;
}
.s{
margin-top: 12%;
padding-left: 4.5%;
}
/*
@media screen and (max-height:660px)
{
.Paperq{
margin-left:-30%!important;
}
.heading{
text-align: center;
padding-left:13%;
}
button{
height: 100px;
width: 200px;
margin-top: 2vh;
margin-left:24%;
}
.s{
margin-top: 5%;
margin-left: 3%;
}
.logo{
height: 85vh;
}
}
*/
/* Portrait and Landscape */
@media screen
and (device-width: 360px)
and (device-height: 640px)
and (-webkit-device-pixel-ratio: 4) {
}
/* Portrait */
@media screen
and (device-width: 360px)
and (device-height: 640px)
and (-webkit-device-pixel-ratio: 4)
and (orientation: portrait) {
.Paperq{
margin-left:-30%!important;
}
.heading{
text-align: center;
padding-left:13%;
}
button{
height: 100px;
width: 200px;
margin-top: 2vh;
margin-left:24%;
}
.s{
margin-top: 5%;
margin-left: 3%;
}
.logo{
height: 85vh;
}
}
/* Landscape */
@media screen
and (device-width: 360px)
and (device-height: 640px)
and (-webkit-device-pixel-ratio: 4)
and (orientation: landscape) {
.heading{
background-color: #282957;
height:10vh;
color:white;
font-size: 3em;
overflow: hidden;
}
.Paperq{
margin-left:-30%!important;
}
.logo{
display: inline-flex!important;
height:90vh;
}
.s{
margin-top: 1%;
margin-left: 2%;
font-size:2em;
}
}