-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
40 lines (34 loc) · 966 Bytes
/
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
body {
background-color: #194d33;
color: white;
font-family: "Courier New", Courier, "Lucida Sans Typewriter", "Lucida Typewriter", monospace;
font-size: 14px;
}
button {
background-color: #001a0d;
color: white;
border-color: #00cc66;
border-radius: 10px;
}
button:disabled {
background-color: #b3cccc;
color: #f0f5f5;
border-color: #66ffb3;
border-radius: 10px;
}
select {
width:150px;
margin:5px;
border-color: black;
border-width: 2px;
border-radius: 5px;
}
input {
width:200px;
}
#submitMatch {
width:100px;
}
#winner {
font-weight: bold;
}