-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.css
More file actions
62 lines (53 loc) · 1.18 KB
/
style.css
File metadata and controls
62 lines (53 loc) · 1.18 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
@import url('https://fonts.googleapis.com/css?family=Roboto+Mono');
body{
margin: 0px;
padding: 0px;
font-family: 'Roboto Mono', monospace;
}
#p5{
position: fixed;
width: 100%;
height: 100vh;
z-index: -1;
}
.container{
width: 100%;
height: auto;
}
#title-animation{
width: 75%;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: #000;
position: fixed;
text-align: center;
font-size: 3vh;
font-weight: normal;
height: auto;
}
#title-animation p, #title-animation a{
word-break: normal;
display: inline-block;
padding: 4px 12px 5px 12px;
border-radius: 50px;
margin: 5px 5px;
box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}
#title-animation p {
background-color: white;
color: blue;
}
#title-animation a {
background-color: blue;
color: white;
text-decoration: none;
transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}
#title-animation a:hover{
background-color: white;
color: blue;
text-decoration: none;
transition: all 0.3s cubic-bezier(.25,.8,.25,1);
box-shadow: 0 10px 24px rgba(0,0,0,0.25), 0 6px 6px rgba(0,0,0,0.22);
}