-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
106 lines (90 loc) · 1.41 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
/* Reset CSS */
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Arial, sans-serif;
background-color: #f7f9fc;
color: #333;
}
.container {
max-width: 800px;
margin: 20px auto;
padding: 20px;
background-color: #ffffff;
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
border-radius: 8px;
}
h1 {
text-align: center;
color: #4a90e2;
margin-bottom: 20px;
}
.section {
margin-bottom: 30px;
}
h2 {
color: #333;
border-bottom: 2px solid #4a90e2;
padding-bottom: 8px;
margin-bottom: 16px;
}
.input-group {
display: flex;
gap: 10px;
margin-top: 10px;
margin-bottom: 20px;
}
.input-group input {
flex: 1;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
}
.button {
padding: 10px 20px;
background-color: #4a90e2;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 1rem;
}
.button-secondary {
background-color: #aaa;
}
.button:hover {
background-color: #357abd;
}
.ban-list,
.pick-list {
display: flex;
flex-wrap: wrap;
gap: 10px;
}
.hero-item {
padding: 8px 12px;
background-color: #e9f5fe;
color: #333;
border-radius: 5px;
font-size: 0.9rem;
text-align: center;
width: 100px;
}
.current-bans,
.current-picks,
.counter-result {
margin-top: 15px;
}
strong {
color: #4a90e2;
}
.button-reset {
background-color: #e74c3c;
color: #fff;
}
.button-reset:hover {
background-color: #c0392b;
}