-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
80 lines (65 loc) · 1016 Bytes
/
styles.css
File metadata and controls
80 lines (65 loc) · 1016 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
body {
font-family: Courier, Arial, sans-serif, Helvetica;
font-size: 1.2em;
margin: 2em;
color: #ddd;
background: #222;
}
img {
margin-right: 1em;
filter: grayscale(1) contrast(0.85);
border-radius: 4px;
}
img:hover {
filter: grayscale(0) contrast(0.78);
transition: filter .2s ease-in;
}
a {
color: #ddd;
}
a:hover {
color: #fff;
}
ul {
list-style-type: none;
}
li {
margin-bottom: 1em;
}
.nudge-up {
position: relative;
display: inline;
top: -48px;
left: -1em;
}
.img-link {
text-underline-offset: -45px;
}
.img-link:hover {
> .div {
filter: contrast(1.6);
transition: filter 0.3s easin-in-out;
}
> .img {
filter: contrast(0.85);
transition: filter 0.3s ease-in-out;
}
}
.imgless-link {
text-underline-offset: 2px;
}
.imgless-link:hover {
filter: contrast(1.6);
transition: filter 0.3s easin-in-out;
}
.container {
display: flex;
align-items: stretch;
}
.half {
width: 66%;
}
.third {
width: 33%;
margin-top: 0.333em;
}