-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
100 lines (87 loc) 路 1.46 KB
/
Copy pathstyles.css
File metadata and controls
100 lines (87 loc) 路 1.46 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
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
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,400i,600,600i,700,900|Yrsa:400,500,600,700&display=swap");
h1 {
font-family: "Yrsa", serif;
font-size: 3em;
margin-bottom: 5px;
}
body {
font-family: "Yrsa", serif;
}
p {
margin: 0px;
}
.main-container {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.marginLeft20 {
margin-right: 20px;
}
.title {
height: 600px;
display: flex;
flex-direction: column;
justify-content: center;
max-width: 330px;
}
.flex {
display: flex;
}
#subtitle {
margin-top: 2px;
}
#short-line {
border-top: 2px solid rgb(202, 202, 202, 0.5);
margin-top: 20px;
padding-top: 20px;
}
/* box! */
#section-1 {
padding-top: 100px;
transition: all 0.8s ease-in-out;
}
#section-2 {
padding-top: 60px;
}
.box {
width: 500px;
height: 400px;
border: 6px solid black;
transition: all 0.8s ease;
border-radius: 5px;
}
#box-2 {
width: 800px;
}
#box-2:hover {
background-image: url(img/galaxy.gif);
background-repeat: no-repeat;
background-size: cover;
}
#box-1:hover {
background-color: black;
transition: all 0.8s ease;
}
/* EYES */
.eyes {
margin: 300px 0px;
display: flex;
}
.eye {
cursor: pointer;
width: 150px;
height: 150px;
margin: 0px 10px;
background-image: url(img/eye-sprite.png);
background-size: 1050px 150px;
}
body {
opacity: 1;
transition: 0.7s opacity;
}
body.fade {
opacity: 0;
transition: none;
}