-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.css
97 lines (83 loc) · 1.79 KB
/
App.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
/* ---------- Header Section ---------- */
/* Center and pad header container. */
.headerContainer {
padding-left: 5%;
padding-right: 5%;
text-align: center;
}
/* Style the page header. */
h1 {
font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: 50px;
color: rgb(16, 141, 160);
}
/* Center and style <p> elements in headerSection. */
.headerSection p {
width: 100%;
margin-inline-start: auto;
margin-inline-end: auto;
color: #6a6a6aef;
}
/* ---------- Game Section ---------- */
/* Pad and align game container. */
.gameContainer {
text-align: center;
padding-bottom: 5%;
}
/* Align and style doorsContainer and start/restart button. */
.doorsContainer {
display:flex;
padding: 0px;
margin: 0px;
justify-content: center;
}
.startGameButton {
margin-left: 10px;
}
button {
cursor: pointer;
height: 55px;
width: 120px;
background-color: rgb(17, 169, 136);
border: 3px solid rgb(30, 150, 124);
border-radius: 5px;
font-size: large;
font-weight: bolder;
color: white;
outline: none;
margin-top: 20px;
}
/* Set door 'frames' height, width and margins. */
.door{
height: 450px;
width: 300px;
margin: 30px;
}
/* Set door images height, width and margins. */
.doorImage{
height: 450px;
width: 300px;
margin: 30px;
}
/* ---------- Footer Section ---------- */
/* Center and pad footer container. */
.footerContainer {
padding-top: 2%;
padding-bottom: 5%;
text-align: center;
}
/* Set colour and top padding for footer paragraph. */
.footerSection p {
color: #6a6a6aef;
padding-top: 5%;
}
/* Set colour and hover colour for footer links and remove underline. */
.footerSection a {
color: rgb(16, 141, 160);
padding-top: 5%;
text-decoration: none;
}
.footerSection a:hover {
color: rgb(30, 150, 124);
padding-top: 5%;
}