-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
112 lines (97 loc) · 2.01 KB
/
style.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
#characterContainer {
display: flex;
justify-content: space-evenly;
align-items: center;
}
span {
display: block;
text-align: center;
margin-bottom: 20px;
}
#duelBtnContainer {
display: flex;
justify-content: center;
/* background-image: url(https://starwarsblog.starwars.com/wp-content/uploads/2020/04/star-wars-backgrounds-14.jpg); */
width: 100%;
}
#header {
background-image: url(https://starwarsblog.starwars.com/wp-content/uploads/2020/04/star-wars-backgrounds-14.jpg);
height: 800px;
}
h1 {
font-family: Nanum Gothic Coding;
color: rgb(233, 233, 27);
padding: 3%;
font-weight: 100;
font-size: 69px;
text-align: center;
}
iframe {
width: 100%;
height: 350px;
margin: 0;
padding: 0;
}
.wookie {
font-family: Nanum Gothic Coding;
color: rgb(233, 233, 27);
padding: 5%;
font-weight: 100;
font-size: 30px;
text-align: center;
}
.hitPoints {
font-family: Nanum Gothic Coding;
color: rgb(233, 233, 27);
padding: 0;
font-weight: 100;
font-size: 40px;
text-align: center;
}
#versus {
font-family: Nanum Gothic Coding;
color: rgb(233, 233, 27);
padding: 10%;
font-weight: 100;
font-size: 40px;
}
#winningMessage {
font-family: Nanum Gothic Coding;
color: rgb(233, 233, 27);
font-weight: 100;
font-size: 30px;
text-align: center;
padding: 30px;
/* background-image: url(https://starwarsblog.starwars.com/wp-content/uploads/2020/04/star-wars-backgrounds-14.jpg); */
}
#duel {
font-family: Nanum Gothic Coding;
color: rgb(0, 15, 181);
font-weight: 50;
font-size: 30px;
text-align: center;
filter: drop-shadow(0 0 0.75rem crimson);
}
@media only screen and
(min-width: 375px) and (max-width: 767px){
#characterContainer {
display: flex;
flex-direction: column;
}
#header {
height: 1500px;
}
}
#audio {
color: rgb(0, 15, 181);
font-weight: 50;
filter: drop-shadow(0 0 0.75rem crimson);
}
#midi {
text-align: center;
}