-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
81 lines (72 loc) · 1.41 KB
/
styles.css
File metadata and controls
81 lines (72 loc) · 1.41 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
html, body {
font-family: 'Ubuntu', monospace;
/*font-size: 14px;*/
max-width: 100%;
max-height: 100%;
/*text-align: center;*/
/*border: 1px solid red;*/
}
.wrapper {
display: block;
position: absolute;
width: 828px;
max-height: 300px;
margin: auto;
top: 20%; right: 0; bottom: auto; left: 0;
/*border: 1px solid red;*/
}
@font-face {
font-family: 'Ubuntu';
src: url('UbuntuMono-B.tff');
}
h1 {
font-family: 'Ubuntu', monospace;
font-size: 68px;
color: #1d1d23;
text-transform: uppercase;
}
h1 .good, .fast, .cheap {
position: relative;
cursor: pointer;
}
h1 .good:hover, .fast:hover, .cheap:hover {
font-size: 0;
}
h1 .good:hover:before, .fast:hover:before, .cheap:hover:before {
font-size: 68px;
color: #df2020;
content: attr(data-hover);
}
.websites {
font-size: 1.4em;
color: #262626;
line-height: 2em;
margin-top: 50px;
word-break: break-all;
}
.websites span{
padding: 4px;
background-color: #DDD;
}
.websites span:hover{
background-color: #EEE;
}
.websites a {
text-decoration: none;
color: #1d1d23;
}
footer {
bottom: 0px;
display: block;
position: fixed;
height: 50px;
width: 100%;
background-color: #f4f4f4;
text-align: center;
}
footer a {
position: relative;
top: 13px;
text-decoration: none;
color: #a29e9d;
}