-
Notifications
You must be signed in to change notification settings - Fork 6
/
app.css
90 lines (75 loc) · 1.13 KB
/
app.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
body {
font-family: 'Palatino', 'Calibri', sans-serif;
margin: 60px 8%;
line-height: 25px;
}
.hide {
display: none;
}
h1 {
border-bottom: 1px solid #000;
line-height: 50px;
}
a,
span {
color: inherit;
text-decoration: none;
border-bottom: 1px solid;
padding-bottom: 3px;
cursor: pointer;
}
code {
background-color: #E8E8E8;
font-size: 15px;
}
hr {
border-top: 1px dotted #8c8b8b;
}
textarea {
width: 100%;
height: 200px;
border: 0.5px solid #8c8b8b;
}
.ad {
color: #ff0000;
}
table {
border: 1px solid #ccc;
border-collapse: collapse;
margin: 0;
padding: 0;
width: 100%;
font-size: 12px;
}
table tr {
background: #f8f8f8;
border: 1px solid #ddd;
padding: .35em;
}
table th,
table td {
text-align: center;
border: 1px solid #ccc;
border-collapse: collapse;
}
.center {
text-align: center;
}
table th {
font-size: .85em;
letter-spacing: .1em;
text-transform: uppercase;
}
.tableCaption {
text-transform: uppercase;
border-bottom: 1px solid #000;
padding-top: 35px;
}
@media screen and (max-width: 800px) {
table {
width: 800px;
}
}
.mt35 {
margin-top: 35px;
}