-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathretro.css
More file actions
86 lines (77 loc) · 1.13 KB
/
retro.css
File metadata and controls
86 lines (77 loc) · 1.13 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
html,
body {
font-family: "Times New Roman", Times, serif;
background-color: #c0c0c0;
color: #000;
font-size: 16px;
}
a {
color: #0000ff;
text-decoration: underline;
}
a:visited {
color: #800080;
}
a:active {
color: #ff0000;
}
table {
border: 1px solid;
border-color: #d3d3d3 #404040 #404040 #d3d3d3;
}
thead,
tbody,
tr,
th,
td {
border: inherit;
margin: inherit;
padding: inherit;
}
th,
td {
padding: 4px;
margin: 4px;
border: inherit;
}
input,
textarea,
button,
select {
border: 1px solid;
}
input,
textarea,
th,
td {
border-color: #404040 #d3d3d3 #d3d3d3 #404040;
}
button,
input[type="button"],
input[type="submit"] {
background-color: #c0c0c0;
border-color: #d3d3d3 #404040 #404040 #d3d3d3;
}
p,
table,
form {
margin-bottom: 2em;
}
img.photo {
image-rendering: pixelated;
}
img.corrupt {
background-size: 105% 95%;
background-repeat: no-repeat;
position: relative;
}
img.corrupt::after {
content: "";
position: absolute;
inset: 0;
background: inherit;
clip-path: polygon(0 70%, 100% 72%, 100% 100%, 0 98%);
transform: translateX(8px);
opacity: 0.7;
mix-blend-mode: screen;
}