blob: 0fa1300aeb6293b31712cff8700f13bc17fc6239 (
plain)
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
|
/* Simple Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Basic Styling */
body {
font-family: 'Helvetica', sans-serif;
background-color: #fff;
color: #000;
line-height: 1.4;
}
.container {
max-width: 400px;
margin: 50px auto;
padding: 20px;
text-align: center;
}
header h1 {
font-size: 2em;
margin-bottom: 0.5em;
}
header p {
font-size: 1.2em;
color: #000;
margin-bottom: 2em;
}
/* Responsive Design */
@media (max-width: 400px) {
.container {
width: 100%;
margin: 20px auto;
padding: 10px;
}
}
.button {
display: inline-block;
padding: 10px 30px;
font-size: 18px;
cursor: pointer;
background-color: #000; /* Dark grey for OLED efficiency */
color: #fff;
border: none;
border-radius: 50px; /* High border-radius for pill shape */
transition: background-color 0.3s;
}
.button:hover {
background-color: #333333; /* Slightly lighter grey for hover state */
}
.menu-option {
margin-bottom: 20px;
}
.menu-option a {
text-decoration: none;
color: #fff;
display: flex;
align-items: center;
justify-content: center;
}
.menu-option svg.logo {
width: 50px;
height: 50px;
margin-right: 40px;
}
|