-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
109 lines (79 loc) · 1.35 KB
/
style.css
File metadata and controls
109 lines (79 loc) · 1.35 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
107
108
109
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Georgia', 'Times New Roman', serif;
line-height: 1.8;
padding: 20px;
background-color: #0d0d0d;
color: #ffffff;
}
h1 {
text-align: center;
margin-bottom: 35px;
color: #E03A3E; }
h2 {
color: #E03A3E;
}
#app {
max-width: 1400px;
margin: 0 auto;
padding: 22px;
background-color: #1a1a1a; }
#controls {
margin-bottom: 30px;
background-color: #2a2a2a;
padding: 20px;
}
#controls section {
margin-bottom: 20px;
}
main {
display: flex;
gap: 30px;
}
#all-players {
flex: 1;
background-color: #2a2a2a;
padding: 20px;
}
.player-card {
margin-bottom: 20px;
}
#my-team {
flex: 1;
background-color: #2a2a2a;
padding: 20px;
}
button {
background-color: #E03A3E;
color: #ffffff;
border: none;
padding: 10px 20px;
cursor: pointer;
font-size: 14px;
}
button:hover {
background-color: #c02e32;
}
button:active {
background-color: #a02528;
}
input, select {
background-color: #1a1a1a;
color: #ffffff;
border: 1px solid #E03A3E;
padding: 8px;
margin-right: 10px;
}
input:focus, select:focus {
outline: 2px solid #E03A3E;
outline-offset: 2px;
}
@media (max-width: 768px) {
main {
flex-direction: column;
}
}