-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
122 lines (102 loc) · 3.74 KB
/
styles.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
116
117
118
119
120
121
122
/* NORMALIZE */
progress,sub,sup{vertical-align:baseline}button,hr,input{overflow:visible}html{font-family:sans-serif;line-height:1.15;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0} figcaption, menu,article,aside,details,figure,footer,header,main,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block}audio:not([controls]){display:none;height:0} [hidden],template{display:none}a{background-color:transparent;-webkit-text-decoration-skip:objects}a:active,a:hover{outline-width:0}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}svg:not(:root){overflow:hidden}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}button,input,optgroup,select,textarea{font:inherit;margin:0}optgroup{font-weight:700}button,input{}button,select{text-transform:none}[type=submit], [type=reset],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:ButtonText dotted 1px}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-input-placeholder{color:inherit;opacity:.54}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}
/*html {
background: url(images/astralship.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}*/
html {
background: black;
}
.box {
position: absolute;
padding: 20px;
display: inline-block;
margin: 10px 0 0 10px;
text-decoration: none;
font-family: sans-serif;
color: white;
width: 80%;
line-height: 1.5em;
}
.box.header {
top: 20px;
left: 20px;
font-size: 1em;
background: rgba(0, 0, 0, 0.5);
}
.box.credits {
position: fixed;
bottom: 10px;
right: 10px;
font-size: 0.8em;
opacity: 0.5;
background: rgba(0, 0, 0, 0.9);
width: 139px;
}
a {
color: white;
text-decoration: none;
transition: all 1000ms ease-out;
border-bottom: 3px solid white;
}
a:hover {
color: yellow;
border-bottom: 3px solid yellow;
}
.person {
float: left;
text-align: center;
margin-right: 20px;
}
.person .avatar {
width: 150px;
border-radius: 50%;
}
.person .social a {
border-bottom: 0;
}
.coin-container {
width: 60px;
text-align: center;
display: inline-block;
font-size: 35px;
}
img.coin {
height: 35px;
}
.cf:before,
.cf:after {
content: " ";
display: table;
}
.cf:after {
clear: both;
}
p + ul {
margin-top: -10px;
}
footer {
position: absolute;
bottom: 0;
left: 0;
right: 0;
text-align: center;
color: white;
padding: 5px; }
footer img {
height: 28px;
position: relative;
top: 7px; }
h1, h2, h3 {
margin-top: 20px;
margin-bottom: 0px;
}
h2 + p, h1 + ul, h2 + ul, h3 + ul {
margin-top: 5px;
}
blockquote {
font-style: italic;
}