-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
65 lines (51 loc) · 785 Bytes
/
Copy pathstyles.css
File metadata and controls
65 lines (51 loc) · 785 Bytes
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
/** { outline: 1px solid red; }*/
html {
text-align: center;
font-family: helvetica;
font-size: 14px;
}
body {
background: linear-gradient(#FF8080, #80FF80);
/* background: linear-gradient(#FFABAB, #AAFFAA);*/
/* min-height: 100%;*/
}
h1 {
border: thin solid white;
padding-left: 2%;
padding-right: 2%;
color: white;
}
p {
margin-left: 2%;
margin-right: 2%;
}
ul {
text-align: left;
list-style: square;
}
a:visited {
color: purple;
}
img {
max-width: 75%;
}
table {
display: inline-table;
}
th {
padding: 2%;
}
table tr:nth-child(even){
background: white;
}
a.ununderlined {
text-decoration: none;
}
#comparison {
background-image: url(screencap.png);
}
@media screen and (max-width: 400px) {
body {
font-size: .75em;
}
}