-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
72 lines (61 loc) · 1.05 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
@font-face {
font-family: Roboto;
src: url(Roboto/Roboto-Regular.ttf);
}
html {
overflow: hidden;
}
html, body {
height: 100%;
margin: 0;
}
body {
font: 14px/1.5em Roboto, sans-serif;
-webkit-font-smoothing: antialiased;
color: white;
}
.author, .logo {
position: absolute;
transition: opacity 0.2s;
opacity: 0.5;
}
.author:hover, .logo:hover {
opacity: 1;
}
.author {
text-align: right;
right: 1em;
bottom: 1em;
}
.author a {
font-weight: bold;
color: inherit;
text-decoration: none;
padding-right: 2.5em;
}
.author a:hover {
text-decoration: underline;
}
.author a .profile {
position: absolute;
border-radius: 50%;
width: 25px;
height: 25px;
right: 0;
background-size: cover;
}
.logo {
bottom: 1em;
left: 1em;
height: 28.75px;
width: 75px;
background: url(https://youpic.com/images/logo/logo-landing.png) no-repeat center center;
background-size: cover;
}
.bg-photo {
height: 100%;
width: 100%;
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
}