-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
104 lines (89 loc) · 1.75 KB
/
styles.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
body {
background-image: url(https://getwallpapers.com/wallpaper/full/6/b/e/1046436-widescreen-medieval-knights-wallpaper-1920x1080-for-ipad-pro.jpg);
}
#text {
background-color: #feac32;
background-image: linear-gradient(#fecc4c, #ffac33);
color: black;
padding: 10px;
font-size: large;
}
#game {
max-width: 500px;
max-height: 400px;
background-color: rgba(255, 255, 255, 0.5);
color: #ffffff;
margin-top: 30px;
margin-bottom: 0px;
margin-left: auto;
margin-right: auto;
padding: 10px;
font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
"Lucida Sans", Arial, sans-serif;
text-align: center;
}
#controls,
#stats {
border: 1px solid #0a0a23;
color: white;
padding: 5px;
background-color: rgba(0, 0, 0, 0.5);
}
#monsterStats {
border: 1px solid #0a0a23;
padding: 5px;
color: #ffffff;
background-color: #c70d0d;
display: none;
}
.stat {
padding-right: 10px;
}
button {
cursor: pointer;
color: #0a0a23;
background-color: #feac32;
background-image: linear-gradient(#fecc4c, #ffac33);
border: 3px solid #feac32;
transition: 0.3s ease;
font-size: large;
}
button:hover {
border: 3px solid black;
}
#imageContainer {
display: flex;
justify-content: center;
align-items: center;
height: 600px;
padding-top: 25px;
}
#locationImage {
max-width: 100%;
max-height: 100%;
border: 3px solid white;
}
@media screen and (max-width: 450px) {
#imageContainer {
padding-top: 10px;
height: 400px;
}
#button3 {
margin-top:10px;
margin-left: 10px;
}
#button2 {
margin-left:5px;
}
#button1 {
margin-right:5px;
margin-bottom: 10px;
}
button:hover {
border: 3px solid #feac32;
}
button {
border-radius: 10px;
padding: 5px;
}
}