-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
125 lines (104 loc) · 2.56 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
113
114
115
116
117
118
119
120
121
122
123
124
125
/* Reset some default styles */
body, h1, h2, p, label, select, input, button {
margin: 0;
padding: 0;
}
body {
font-family: Arial, sans-serif;
background-color: #000; /* Black background */
color: #fff; /* White text */
text-align: center;
padding: 20px;
}
header {
background-color: #333; /* Dark gray header background */
padding: 10px;
}
h1 {
font-size: 36px;
margin-bottom: 20px;
color: #3498db; /* Dark blue heading */
}
.container {
display: flex;
flex-direction: column;
align-items: center;
}
.user-input {
background-color: #333; /* Dark gray background for user input section */
padding: 20px;
border-radius: 10px;
margin-bottom: 20px;
}
label {
display: block;
font-size: 18px;
margin-bottom: 10px; /* Increased margin */
color: #fff; /* White label text */
}
select, input[type="number"] {
width: 100%;
padding: 10px;
font-size: 16px;
margin-bottom: 15px;
border: none;
background-color: #444; /* Darker gray for input fields */
color: #fff; /* White text */
border-radius: 5px;
}
select:hover, input[type="number"]:hover {
background-color: #333; /* Darker gray on hover */
}
/* Style the strategy buttons */
.strategy-btn {
background-color: #3498db; /* Blue for strategy buttons */
color: #fff;
border: none;
padding: 10px 20px;
margin: 5px;
border-radius: 5px;
cursor: pointer;
}
/* Highlighted state for selected button */
.strategy-btn.selected {
background-color: #e74c3c; /* Red for selected button */
}
.strategy-btn:hover {
background-color: #2980b9; /* Slightly darker blue on hover */
}
/* Added styles for narrower input and centering */
.narrow-input {
width: 10px; /* Narrower input field */
text-align: center; /* Center the text */
margin: 0 auto; /* Center horizontally */
}
/* Additional styles for specific elements */
#tactic-details {
margin-top: 20px;
}
#opponents {
margin-top: 20px;
}
#reset-btn {
background-color: #e74c3c; /* Red for reset button */
margin-top: 20px;
}
#reset-btn:hover {
background-color: #c0392b; /* Darker red on hover */
}
/* Updated styles for team tactics and temperament considerations */
#tactic-description, #opponent-temperaments {
font-size: 16px;
}
.tactic-item {
text-align: left;
margin-left: 20px;
margin-top: 10px;
padding: 5px;
background-color: #444; /* Darker gray for tactic item */
border-radius: 5px;
color: #fff;
}
.tactic-item h3 {
color: #3498db; /* Dark blue for tactic item heading */
}