-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylesheet.css
100 lines (87 loc) · 2 KB
/
stylesheet.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
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
* {
box-sizing: border-box;
}
body {
display: flex;
font-family: Roboto, monospace, sans-serif;
justify-content:center;
background-color: rgba(156, 145, 108, 0.852);
margin: 0;
min-height: 100vh;
align-items: center;
}
.game-container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
padding: 20px;
border-radius: 10px;
border: 2px rgb(109, 89, 0) solid;
background-color: rgba(166, 163, 100, 0.851);
box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
width: 100vh;
margin: 20px;
}
.title-section {
margin: 5px;
font-size: 30px;
text-align: center;
}
.top-section,
.results-container {
background-color: rgba(109, 136, 60, 0.838);
border: 2px black solid;
box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
padding: 20px;
border-radius: 5px;
margin: 5px;
width: 90vh;
}
.message-box {
background-color: aliceblue;
border: 2px black solid;
margin: 20px 0px;
padding: 5px;
min-height: 50px;
text-align: center;
font-weight: 800;
}
.buttons-card {
display: flex;
justify-content:space-between;
padding: 10px 0px;
margin: 10px 0px;
gap: 15px;
}
.weapon-buttons {
background-color: aquamarine;
text-align: center;
font-size: 3vh;
font-weight: bold;
color: brown;
border-radius: 5px;
flex: 1;
padding: 10px;
box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
}
.results-container {
display: flex;
gap: 5px;
justify-content: space-between;
}
.rounds,
.final-results {
background-color: rgba(140, 98, 56, 0.723);
border: 2px black solid;
box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
padding: 20px;
border-radius: 5px;
margin: 5px 0px;
min-height: 50vh;
flex: 1;
}
.list-of-rounds {
list-style-type: none;
}