-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.css
117 lines (96 loc) · 2.2 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
105
106
107
108
109
110
111
112
113
114
115
116
117
body {
background-color: rgb(10, 10, 25);
color: white;
font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 1vw;
}
#info, #actions, #difficulty-builder {
border: solid 1.5vw;
border-color: white;
border-radius: 0.75vw;
}
#info {
border-bottom-width: 0px;
border-bottom-left-radius: 0px;
border-bottom-right-radius: 0px;
}
#actions {
border-top-left-radius: 0px;
border-top-right-radius: 0px;
}
button.move {
border: 0.5vw solid;
width: 50%;
height: 50px;
}
button {
padding: 0;
color: black;
}
#button-1, .damageMove {
background-color: rgb(255, 120, 100);
border-color: rgb(225, 90, 70) !important;
}
#button-2, .statusMove {
background-color: rgb(100, 120, 255);
border-color: rgb(70, 90, 225) !important;
}
#button-3, .specialDmgMove {
background-color: rgb(255, 255, 120);
border-color: rgb(225, 225, 90) !important;
}
#button-4, .healMove {
background-color: rgb(100, 255, 120);
border-color: rgb(70, 225, 90) !important;
}
#wawa {
width: 10vw;
height: 10vw;
}
button:disabled {
background-color: rgb(120, 120, 120) !important;
color: white;
}
.difficulty {
border: 0;
width: 10vw;
height: 10vw;
font-size: 2vw;
}
.move-select {
width: 15vw;
height: 15vw;
margin: 0.5vw;
}
#mute-btn {
width: 60px;
height: 60px;
float: right;
border: 0;
background-color:rgb(10, 10, 25);
}
.fa-solid {
text-align: center;
opacity: 1;
}
textarea {
border-radius: 10px;
resize: none;
}
#difficulty-builder {
width: 264px;
}
#difficulty-finish-button {
border: 5px solid rgb(10, 10, 25);
height: 50px;
position: absolute;
}
.dead, .nerf, #key-red {color: rgb(255, 120, 100);}
.boost, #key-green {color: rgb(100, 255, 120);}
#warning {color: darkred;}
#d-easy {background-color: rgb(100, 255, 120)}
#d-normal {background-color:rgb(255, 255, 120)}
#d-hard {background-color:rgb(255, 120, 100)}
#button-2, #button-4 {float: right;}
#key-yellow {color: rgb(255, 255, 120)}
#key-blue, .defense {color: rgb(100, 120, 255)}