-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
48 lines (46 loc) · 1000 Bytes
/
style.css
File metadata and controls
48 lines (46 loc) · 1000 Bytes
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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
body {
display: flex;
flex-wrap: wrap;
align-items: center;
}
body {
background: url(img/bkJ-g4.jpg) no-repeat;
background-size: cover;
background-attachment: fixed;
background-position: center;
flex-direction: column;
color: white;
font-weight: bold;
}
h1 {
color: darkorange;
font-size: 1.3em;
text-transform: uppercase;
padding: 10px;
}
#message-el {
font-style: italic;
}
button {
text-transform: uppercase;
color: rgb(13, 122, 13);
border: 1px solid rgb(0, 112, 75);
background-color: rgb(255, 217, 0);
width: 100px;
height: 25px;
border-radius: 10px;
margin-top: 10px;
}
button:hover {
background-color: yellow;
transform: scale(1.5);
}
#player-el {
padding-top: 10px;
}