-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathslapstyle.css
129 lines (102 loc) · 2 KB
/
slapstyle.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
*{
background-color: rgb(255, 255, 255);
} /* sets the whole body colour to white. */
body
{ /* Basic body styling */
align-items: center;
justify-content: center;
text-align: center;
font-family: 'DynaPuff'; /* Font family sourced from w3schools.com */
}
#bibleverse {
padding: 20px;
background-color: rgb(237, 231, 222);
}
#bibleverse h5, h6{
background-color: rgb(237, 231, 222);
}
#visualbox img {
width: 20%;
height: auto;
}
#bannerh1{
// font-family: 'DynaPuff';
font-size:x-large;
color:rgb(211, 97, 30);
}
#navlinks{
display: flex;
}
#navlinks li{
margin: auto;
text-align: center;
list-style: none;
color: ;
}
#entergame
{
color: rgb(211, 97, 30);
padding: 10px;
}
#startgame{
color:rgb(211, 97, 30);
padding: 10px;
}
.prompter
{
color: rgb(211, 97, 30);
}
@media only screen and (max-width: 600px) {
#visualbox img {
width: 50%;
height: auto;
}
/* code to reduce size of banner image for devices under screen width of 600 pixels */
}
#player1detailsbox{
padding: 5px;
background-color:rgb(192, 197, 234);
}
#player2detailsbox{
padding: 5px;
background-color: rgb(246, 232, 203);
}
#healthmonitor{
display: flex;
}
.healthbars {
width: 250px;
margin: 50px auto;
text-align: center;
}
#player1health {
width: 10px;
height: 10px;
border-radius: 50%;
background-color: green;
margin: 5px;
/* margin-bottom: 10px; */
}
#player2health {
width: 10px;
height: 10px;
border-radius: 50%;
background-color: green;
margin: 5px;
}
.namenstatus
{
display: flex;
align-items: center;
}
#p1bar { height: 10px; }
#p2bar { height: 10px;}
#commentatorsays {
font-family: 'DynaPuff';
color:chocolate;
font-weight: bolder;
}
#consolesays {
font-weight: lighter;
font-size: smaller ;
}