-
Notifications
You must be signed in to change notification settings - Fork 6
/
style.css
84 lines (70 loc) · 990 Bytes
/
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
html {
background: #111;
width: 100%;
margin: 0;
padding: 0;
font-family: "JetBrains Mono", "Roboto Mono", monospace;
font-size: 18px;
color: #ddd;
}
body,
select,
a:link,
a:visited {
font-family: inherit;
color: #ddd;
text-decoration: none;
}
body {
padding: 1em;
}
p {
margin: 0;
}
h1 {
font: inherit;
font-size: 2em;
font-style: italic;
font-weight: 100;
}
h1::before, h1::after {
content: "///"
}
strong {
font-weight: 700;
}
img {
position: absolute;
bottom: 2em;
right: 2em;
zoom: .5;
}
.cards {
display: flex;
flex-wrap: wrap;
gap: 1.5em;
margin-top: 1.5em;
}
.card {
width: 320px;
background: rgba(255, 255, 255, 0.01);
border-radius: .2em;
overflow: hidden;
}
.card video {
width: 100%;
}
.card div {
padding: 0.7em 1em;
}
.card.jumbotron {
font-size: 5em;
display: flex;
justify-content: center;
align-items: center;
}
@media only screen and (max-width:640px){
.card {
width: 100%;
}
}