-
Notifications
You must be signed in to change notification settings - Fork 59
/
style.css
115 lines (98 loc) · 2.32 KB
/
style.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
@font-face {
font-family: 'Tandy';
src: url('/Px437_TandyOld_TV.ttf') format('truetype');
}
* {
box-sizing: border-box;
-webkit-font-smoothing: none;
font-family: 'Tandy', Arial, Helvetica, sans-serif;
}
body {
background: #c0c0c0;
padding: 32px;
text-align: center;
image-rendering: pixelated;
}
h1 {
font-size: 48px;
}
p {
margin-bottom: 2em;
}
.list {
align-items: center;
max-width: 640px;
margin: 0 auto;
padding: 64px 0;
}
.content {
max-width: 800px;
margin: 0 auto;
padding: 64px 0;
line-height: 1.25;
}
.box {
background: silver;
box-shadow: inset -1px -1px #0a0a0a, inset 1px 1px #fff, inset -2px -2px grey, inset 2px 2px #dfdfdf;
display: flex;
flex-direction: column;
padding: 12px 24px;
min-height: 23px;
text-align: left;
text-decoration: none;
width: 100%;
}
.box:active {
box-shadow: inset -1px -1px #fff, inset 1px 1px #0a0a0a, inset -2px -2px #dfdfdf, inset 2px 2px grey;
padding: 18px 22px 0 6px 16px;
}
.box:focus {
outline: 1px dotted #000;
outline-offset: -6px;
}
.box .name {
color: teal;
display: block;
font-size: 16px;
margin-bottom: 8px;
}
.box .because {
display: block;
font-size: 11px;
line-height: 1.5;
color: #222;
}
.github {
position: absolute;
top: 0;
right: 0;
}
#hit-counter {
background: black;
color: red;
font-family: Orbitron, sans-serif;
font-size: 18px;
display: inline-block;
padding: 2px 20px 3px;
letter-spacing: 5px;
text-decoration: none;
text-shadow: 0 0 10px red;
margin-top: 32px;
}
#hit-counter:hover {
color: greenyellow;
text-shadow: 0 0 10px greenyellow;
}
::-webkit-scrollbar {
width: 16px;
}
::-webkit-scrollbar-corner {
background: #dfdfdf;
}
::-webkit-scrollbar-thumb {
background-color: #dfdfdf;
box-shadow: inset -1px -1px #0a0a0a, inset 1px 1px #fff, inset -2px -2px grey, inset 2px 2px #dfdfdf;
}
::-webkit-scrollbar-track {
background-image: url(data:image/svg+xml;charset=utf-8,%3Csvg width='2' height='2' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1 0H0v1h1v1h1V1H1V0z' fill='silver'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2 0H1v1H0v1h1V1h1V0z' fill='%23fff'/%3E%3C/svg%3E);
}