-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
83 lines (74 loc) · 1.58 KB
/
Copy pathstyles.css
File metadata and controls
83 lines (74 loc) · 1.58 KB
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
73
74
75
76
77
78
79
80
81
82
83
@font-face {
font-family: 'MortalKombatTitle';
src: url(fonts/MKtitle.ttf) format('truetype');
}
@font-face {
font-family: 'MortalKombatOne';
src: url(fonts/mortalkombat1.ttf) format('truetype');
}
body {
background-image: url(images/thepit.jpeg);
background-size: cover;
height: 100vh;
width: 100vw;
background-repeat: no-repeat;
overflow: hidden;
background-attachment: fixed;
background-position: center center;
}
h1 {
box-sizing: border-box;
font-family: 'MortalKombatTitle', sans-serif;
text-align: center;
font-size: 50px;
margin: 0 200px 0 200px;
border: solid gray 10px;
background-color: lightgray;
padding: 10px 70px 10px 70px;
border-bottom-right-radius: 80px;
border-bottom-left-radius: 80px;
border-top-right-radius: 80px;
border-top-left-radius: 80px;
}
.game-ctr {
font-family: 'MortalKombatOne', sans-serif;
text-align: center;
}
h2 {
font-size: 40px;
text-align: center;
color: yellow;
padding-top: 5px;
margin-top: 0px;
margin-bottom: 20px;
}
h3 {
font-size: 40px;
text-align: center;
color: red;
margin: 10px;
}
.healthbar {
font-size: 20px;
color: yellow;
}
#game-board{
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
height: 100%;
width: 100%;
}
img {
height: calc(12% - 5px);
width: calc(10.33% - 5px);
margin: 5px;
}
#init-button {
font-size: 30px;
bottom: 0px;
color: #00FF40;
background-color: black;
font-family: 'MortalKombatOne', sans-serif;
}