forked from devhack-seattle/devhack.net
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
51 lines (46 loc) · 830 Bytes
/
style.css
File metadata and controls
51 lines (46 loc) · 830 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
body {
background: black;
color: lime;
font-family: monospace;
margin: 100px 20%;
border: 10px red;
font-size: 125%;
}
input[type="text"] {
background-color: inherit;
color: inherit;
border: none;
outline: none;
font: inherit;
caret-shape: block;
}
h1,p {
margin: 40px 0px;
}
a {
color: cyan;
}
a:visited {
color: mediumaquamarine;
}
dt::before {
content: ">";
padding-right: 0.5em;
}
ul {
list-style-type: '- ';
}
.address-hide {
opacity: 0.5;
}
@media only screen and (min-width: 768px) {
/* For desktop, only show the address on hover. For mobile devices let's not
make people go through that. */
.address-hide {
display: none;
}
}
.address:hover .address-hide,
.address-hide:hover .address-hide {
display: inline;
}