-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
89 lines (76 loc) · 1.42 KB
/
style.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
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;600&display=swap');
body, html {
font-family: 'Inter', sans-serif;
font-weight: 300;
margin: 0;
padding: 0;
width: 100%;
height: 100%;
}
.video-container {
position: relative;
height: 0;
overflow: hidden;
padding-bottom: 62.25%;
flex-basis: 100%;
margin-bottom: 2rem;
margin-top: 2rem;
}
.video-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
main {
max-width: 800px;
width: 100%;
flex-direction: column;
justify-content: center;
align-content: center;
text-align: center;
padding: 1rem;
}
#bitcoin-design-footer {
display: flex;
flex-direction: column-reverse;
align-items: center;
padding: 2rem;
}
#bitcoin-design-footer img {
width: 200px;
}
#wrapper {
display: flex;
width: 100%;
min-height: 100%;
align-items: center;
justify-content: center;
}
a {
color: #F7931A;
}
.links {
display: flex;
justify-content: center;
flex-direction: column;
}
.links li {
list-style-type: none;
}
.links li a {
background-color: #F7931A;
padding: 1rem;
margin: 0.5rem 0.5rem;
color: #fff;
text-decoration: none;
border-radius: 0.25rem;
display: inline-block;
}
@media (min-width: 600px) {
.links {
flex-direction: row;
margin: 0 0.5rem;
}
}