-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmorpheus_project.css
More file actions
63 lines (60 loc) · 1.01 KB
/
morpheus_project.css
File metadata and controls
63 lines (60 loc) · 1.01 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
* {
box-sizing: border-box;
padding: 0;
margin: 0;
}
body {
background: #22313f;
}
#starsBox {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0,0,0,0.75);
opacity: .5;
span {
display: inline-block;
width: auto;
position: absolute;
border-radius: 100%;
transition: 100s linear;
}
}
p {
position: fixed;
top: 50%;
left: 0;
right: 0;
text-align: center;
transform: translateY(-50%);
font-size: 40px;
font-weight: 900;
color: violet;
text-shadow: 0 0 50px black;
text-transform: uppercase;
font-family: 'Roboto','Helvetica','Arial',sans-serif;
letter-spacing: 5px;
> span {
display: block;
font-size: 12px;
color: #bdc3c7;
margin-top: 30px;
font-weight: 100;
text-shadow: 0 0 50px black;
letter-spacing: 3px;
> a {
font-weight: 700;
text-decoration: none;
color: #a83dce;
padding-bottom: 2px;
border-bottom: 0px solid #a83dce;
transition: 0.5s;
}
> a:hover {
padding-bottom: 5px;
border-bottom: 2px solid #a83dce;
}
}
}