-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
55 lines (51 loc) · 1017 Bytes
/
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
body {
margin: 0;
padding: 0;
background: beige;
text-align: center;
}
/*
* The . in front indicates this is a "class".
* Any html tags with "sheetsTable" as a class will apply these rules.
*/
.sheetsTable {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
text-align: center;
text-align: center;
margin-left: auto;
margin-right: auto;
}
.sheetsTable td, .sheetsTable th {
text-align: center;
border: 2px solid black;
}
.sheetsTable th, .sheetsTable td {
padding: 15px;
}
.logo {
width: 50px; /* or whatever size you want */
height: auto; /* maintain aspect ratio */
}
.header {
margin-top: 2.5cm;
}
.social-media {
display: flex;
justify-content: center;
align-items: center;
gap: 20px;
}
.social-media img {
width: 100px;
height: auto;
}
.sheet-music {
justify-content: center;
align-items: center;
gap: 20px;
}
.sheet-music img {
width: 400px;
height: auto;
vertical-align: middle;
}