-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
56 lines (56 loc) · 1.4 KB
/
index.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
* {box-sizing:border-box}
body {
background-image: url("index1.png");
background-attachment: fixed;
background-size: contain;
color: white;
font-family: "Quicksand", sans-serif;
font-size: 20px;
}
.header {
width : 59.2%;
font-family: "Sofia", sans-serif;
background-color: #4d084d;
font-size: 30px;
text-align: center;
padding: 2% 0;
margin: 0vw 19.8%;
position: fixed;
top:0;
z-index: 1
}
div {
background-color: rgba(105,105,105,0.8);
margin: 0 20%;
margin-bottom: 5px;
padding: 3% 2%;
border-radius: 10px;
text-align: center;
}
a {color:white}
.a{padding:5%; font-size: 25px;margin-top:9.5%;text-align:justify}
p {font-size: 25px}
iframe {
width: 100%;
height: 480px;
}
.install {
background-color: #4d084d;
font-size: 24px;
text-align: center;
padding: 2% 6%;
position: fixed;
bottom:0px;
right: 12px;
border-radius:35px;
z-index: 1;
}
.end {font-size:15px;margin:0 20%}
@media screen and (max-width:700px) {
body {background-image:url("index.png")}
.header {width:94.5%;margin:4px;padding:0}
div {margin: 4px}
.a {margin-top: 27%}
iframe {height:210px}
.end {margin: 4px}
}