-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
35 lines (32 loc) · 764 Bytes
/
style.css
File metadata and controls
35 lines (32 loc) · 764 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
body {
background-image: url(img/background.png);
margin: 0;
padding: 0; }
.container {
margin: 0;
padding-top: 120px;
background-image: url(img/glow.png);
background-position: center top;
background-repeat: no-repeat;
min-height: 400px;
text-align: center; }
.info {
position: absolute;
bottom: 72px;
right: 0px;
padding: 12px;
font-family: "Wellfleet", cursive;
font-size: 12px;
color: white;
background-color: rgba(0, 0, 0, 0.4); }
.info a {
color: #33ccff;
text-decoration: none;
transition: color 0.2s ease-in;
-webkit-transition: color 0.2s ease-in;
-moz-transition: color 0.2s ease-in;
-o-transition: color 0.2s ease-in; }
.info a:hover {
color: #89e2ff; }
.static {
display: none; }