-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
106 lines (90 loc) · 1.37 KB
/
Copy pathstyle.css
File metadata and controls
106 lines (90 loc) · 1.37 KB
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
body {
background: #111;
color: white;
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
padding: 20px;
}
.container {
display: flex;
gap: 20px;
}
.team {
width: 200px;
text-align: center;
}
.team h2 {
padding: 10px;
border-radius: 5px;
}
.blue h2 {
background: #3b82f6;
}
.red h2 {
background: #ef4444;
}
.slots, .bans {
display: flex;
flex-direction: column;
gap: 10px;
margin-top: 10px;
}
.slot, .ban {
width: 80px;
height: 80px;
border: 2px solid #444;
background: #222;
margin: auto;
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
}
.champions {
width: 420px;
text-align: center;
}
.controls {
margin-bottom: 10px;
}
.controls button {
background: #333;
border: none;
color: white;
padding: 8px 12px;
margin: 5px;
border-radius: 6px;
cursor: pointer;
}
.controls button:hover {
background: #555;
}
#search {
width: 90%;
padding: 5px;
margin-bottom: 10px;
}
#champion-list {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 5px;
}
.champion {
width: 64px;
height: 64px;
border: 2px solid #333;
border-radius: 8px;
overflow: hidden;
cursor: pointer;
transition: transform 0.2s;
}
.champion img {
width: 100%;
height: 100%;
object-fit: cover;
}
.champion:hover {
transform: scale(1.1);
border-color: yellow;
}