-
Notifications
You must be signed in to change notification settings - Fork 0
/
presentation.css
82 lines (68 loc) · 1.39 KB
/
presentation.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
@font-face { font-family: Lato; src: url('./fonts/Lato-Light.ttf'); }
@font-face { font-family: Lato; font-weight: bold; src: url('./fonts/Lato-Semibold.ttf');}
body {
background-image: radial-gradient(circle at 50% 50%, rgba(35,35,60,1) 0%, rgba(30,30,30,1) 90% );
margin:30px 20%;
color:white;
height:100%;
overflow-y: scroll;
overflow-x:hidden;
line-height:20px;
padding-bottom:100px;
font-family: Lato;
}
p {
padding:0;
margin:0;
}
h2 {
text-align:center;
}
h2 span {
font-size:0.5em;
color:rgba(255,255,255,0.5);
font-weight:normal;
}
h3 {
border-top:1px solid rgba(255,255,255,0.05);
padding-top:20px;
text-transform: uppercase;
}
.presentation div {
display: flex;
flex-wrap: nowrap;
justify-content: center;
align-items: flex-start;
gap:40px;
padding-bottom:20px;
}
.controls {
flex-direction: row-reverse;
}
.ui {
flex-direction: row;
}
.game {
flex-direction: row;
padding-bottom: 00px !important;
}
.presentation img {
width: 50%;
height:auto;
aspect-ratio: 800/600;
}
.play {
display:block;
color:white;
text-decoration:none;
border:1px solid white;
padding:20px 10px;
text-align: center;
transition: all 0.3s ease-in-out;
max-width:500px;
width:100%;
text-align:center;
}
.play:hover {
background-color:white;
color:black; }