-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
96 lines (76 loc) · 1.41 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
*, *:after, *:before {box-sizing: border-box;}
body {
overflow-y: scroll;
overflow-x: hidden;
/* position: fixed; */
width: 100vw;
margin: 0;
}
a:link { color:black; }
a:visited { color:black; }
.header {
width: 100%;
height: 60px;
background-color: white;
}
.header .header_logo {
margin: 10px;
height: 40px;
}
.title_container {
width: 100%;
margin: 40px 0 10px 0;
padding: 10px;
}
.title_container .title_box {
width: 100%;
text-align: center;
}
.content_container {
width: 100%;
margin: 10px 0 10px 0;
padding: 10px;
}
.content_container .content_box {
width: 100%;
text-align: center;
}
.content_image {
height: 460px;
margin: 0 auto;
}
.download_button_container {
width: 100%;
margin: 10px 0 10px 0;
padding: 10px;
}
.download_button_container .download_button_apple {
width: 100%;
height: 40px;
text-align: center;
}
.download_button_container .download_button_google {
width: 100%;
height: 60px;
text-align: center;
}
.footer {
width: 100%;
height: 115px;
background-color: white;
padding-top: 20px;
}
.footer .footer_desc {
width: 100%;
height: 24px;
margin: 10px 0 10px 0;
display: flex;
justify-content: center;
align-items: center;
}
.footer .footer_sub_desc {
width: 100%;
height: 20px;
text-align: center;
margin: 20px 0 20px 0;
}