-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
72 lines (63 loc) · 1.06 KB
/
styles.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
/* CSS Document */
@font-face {
font-family: "SpiritPhone";
src: url("SpiritPhone.ttf") format('truetype');
}
#albumBackground {
position:relative;
max-width: 100%;
max-height: 100vh;
margin: auto;
object-fit: contain;
}
.album {
display: flex;
height: 100%;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
}
.input {
position:absolute;
color: white;
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
height: 100%;
flex-grow: 1;
width: 20vw;
margin: 10px;
text-align: center;
font-family: "SpiritPhone";
font-size: 5em;
}
.input > * {
height: 50px;
width: 100%;
margin: 25px;
}
input {
text-align: center;
font-family: "SpiritPhone";
font-size: 0.5em;
box-shadow: none;
border: 0;
background-color: rgba(255,255,255,0.20);
transition: background-color 0.25s ease;
color: white;
}
input:hover {
background-color: rgba(255,255,255,0.40);
}
input:focus {
background-color: rgba(255,255,255,0.40);
}
body {
background-color:black;
}
* {
margin: 0;
padding: 0;
height: 100%;
}