-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
114 lines (94 loc) · 1.42 KB
/
styles.css
File metadata and controls
114 lines (94 loc) · 1.42 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
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
display: flex;
flex-direction: column;
margin: auto;
text-align: center;
height: 100vh;
padding-top: 100px;
color: black;
}
.intro {
margin: 0 auto 0 auto;
max-width: 700px;
}
.intro h1 {
text-align: left;
}
#intro-title {
display: flex;
align-items: center;
justify-content: center;
}
.intro p {
line-height: 1.5;
margin-bottom: 50px;
}
.demo-video {
margin: 50px 0 75px 0;
}
.features {
margin: 0 auto 0 auto;
}
ul {
text-align: left;
list-style-type: none;
font-weight: bold;
}
.features ul li {
margin-top: 25px;
margin-bottom: 25px;
font-size: large;
}
#app-icon {
max-width: 150px;
border-radius: 5px;
}
h1 {
font-size: xx-large;
}
video {
height: 600px;
}
footer {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
margin-top: auto;
padding: 30px;
background-color: #575b77;
}
footer a {
margin: 0 5px 0 5px;
}
a {
text-decoration: none;
color: black;
font-weight: bold;
padding: 5px;
}
.setup-tutorial {
margin: 0 auto 10vh auto;
}
.step {
font-size: 18px;
line-height: 2;
}
.setup-tutorial img {
width: 300px;
margin: 10px 0px 10px 30px;
}
@media (prefers-color-scheme: dark) {
body {
background-color: #232526;
color: white;
}
footer {
background-color: #000;
}
a {
color: white;
}
}