-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
68 lines (56 loc) · 943 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
56
57
58
59
60
61
62
63
64
65
66
67
68
body {
background-color: powderblue;
font-family: Arial, sans-serif;
margin: 0;
}
.center {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
height: 50vh;
}
.center-column {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
height: 50vh;
}
h1 {
color: navy;
font-size: 3em;
margin-bottom: 0;
}
h3, h5 {
margin: 10px 0;
}
.hobby-list {
list-style-type: none;
padding: 0;
}
.hobby-list li {
margin: 5px 0;
}
.hobby-list a {
text-decoration: none;
color: darkblue;
}
.hobby-list a:hover {
color: darkred;
text-decoration: underline;
}
.container img {
max-width: 100%;
}
.container .col-md-6.offset-md-3 {
margin-top: 20px;
}
/* for music button*/
.music-button {
position: fixed;
top: 20px;
right: 20px;
z-index: 1000;
}