-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
96 lines (78 loc) · 1.28 KB
/
styles.css
File metadata and controls
96 lines (78 loc) · 1.28 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
html {
box-sizing: border-box;
}
*, *:before, *:after {
box-sizing: inherit;
}
body {
margin: 1em;
font-size: 18px;
line-height: 1.5;
font-family: Georgia, "Times New Roman", Times, serif;
background-color: #ffffff;
color: #333333;
}
h1 {
margin: 1em 0;
font-size: 2rem;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
text-align: center;
}
p {
margin: 1em 0;
}
button, input {
display: inline-block;
font-size: 1em;
}
button {
border: none;
border-radius: 5px;
padding: 0.25em 0.5em;
background-color: #d0d0d0;
cursor: pointer;
}
input {
border: 1px solid #d0d0d0;
padding: 0.25em;
}
@media (min-width: 1000px) {
#app {
margin: 0 5%;
}
}
.result-entry label {
display: block;
margin: 0.5em 0;
}
.result-entry input {
width: 100%;
}
@media (min-width: 575px) {
.result-entry input {
width: 200px;
margin-left: 0.25em;
}
.result-entry label {
display: inline-block;
margin: 0.5em 0.25em;
}
.result-entry label:first-child {
margin-left: 0;
}
.result-entry label:last-child {
margin-right: 0;
}
}
.tournament-results {
margin: 1em 0;
}
.tournament-result {
margin: 0.5em 0
}
.tournament-result:last-child {
margin-bottom: 1em;
}
.tournament-result button {
margin-left: 0.25em;
}