-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
58 lines (47 loc) · 1.14 KB
/
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
/*The page is styled for desktop and is not responsive.*/
/*Styling the whole page*/
body {
margin: 0; /*takes away the white space around the page*/
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
/* Styling the header */
header {
background-color: darkblue;
height: 150px;
padding: 50px;
color: white;
text-align: center;
}
/*Styling the orchestra section*/
.orchestra {
width: 100%;
background-color: lightblue;
padding-top: 100px;
padding-bottom: 100px;
display: flex;
justify-content: center; /*to put the buttons in the middle of the page*/
}
/*Styling the container for the buttons*/
.button-container {
width: 450px;
display: flex;
flex-wrap: wrap;
justify-content: center; /*to put the buttons in the middle of the page*/
}
/*Styling the buttons*/
button {
background-color: orange;
width: 120px;
height: 120px;
margin: 10px;
border-radius: 5%;
border: 3px solid black;
font-size: 40px;
}
/*
button:visited {
background-color: orange;
}
button:active {
background-color: green;
} */