-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsailscore.css
129 lines (104 loc) · 1.89 KB
/
sailscore.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
126
127
128
129
@media screen {
html {
font-family: sans-serif;
}
#raceEntries > div {
display: inline-block;
min-width: 50px;
padding-top: 0.5em;
}
#entries {
flex: 1;
}
#controls {
padding-bottom: 0.5em;
border-bottom: 1px solid black;
}
#controls > span {
margin-right: 1em;
}
#rightControls > div {
flex: 1;
margin-bottom: 1em;
}
#raceEntries textarea {
width: 50px;
height: 30em;
}
textarea {
font-size: 10px;
}
#raceEntries span {
font-weight: bold;
}
#racerNameEntry {
width: 250px;
height: 21em;
}
#racerClassEntry {
width: 250px;
height: 7em;
}
#flexWrapper {
display: flex;
padding-top: 0.5em;
}
#errorMessage > div {
padding-top: 0.5em;
color: red;
}
table {
margin-top: 1em;
font-family: sans-serif;
border-collapse: collapse;
}
td {
text-align: right;
border: 1px solid gray;
padding: 4px 6px;
font-size: 14px;
}
.left {
text-align: left;
}
.sailNum {
background-color: #ccc;
}
caption {
font-weight: bold;
font-size: 22px;
margin: 6px;
}
}
@media print {
html {
font-family: sans-serif;
font-size: 14pt;
}
#controls {
display: none;
}
#flexWrapper {
display: none;
}
table {
border-collapse: collapse;
max-width: 100%;
}
caption {
margin-top: 1.5em;
font-weight: bold;
}
th {
font-size: 12pt;
white-space: nowrap;
}
td {
border: 1px solid black;
padding: 0.25em;
white-space: nowrap;
}
.sailNum {
background-color: #ccc;
}
}