-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.css
127 lines (123 loc) · 2.48 KB
/
page.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
123
124
125
126
127
/* Main */
main p {
margin-top: 40px;
font-size: 1.5em;
line-height: 1.4em;
margin-block-start: 0.83em;
margin-block-end: 0.83em;
margin-inline-start: 0px;
margin-inline-end: 0px;
font-weight: bold;
color: #74838c;
}
main .fullSpaceBetween {
width: 100%;
display: flex;
align-items: center;
}
main .fullSpaceBetween h2 {
font-size: 190px;
line-height: 180px;
color: #ffc4b8;
}
main #introduction {
min-height: 400px;
height: 60vh;
}
main #introduction #personImage {
min-height: 350px;
min-width: 350px;
position: relative;
}
main #introduction img {
top: 0;
left: 0;
height: 100%;
width: 100%;
border-radius: 100%;
position: absolute;
transition: 0.2s ease-in-out;
}
main #introduction #personImage .shadow {
top: 0;
left: 0;
height: 100%;
width: 100%;
position: absolute;
border-radius: 100%;
box-shadow: 5px 0 10px black inset;
}
main a {
text-decoration: none;
color: #FFFFFF;
cursor: pointer;
transition: 0.2s ease-in-out;
}
main a:hover {
opacity: 0.8;
}
main span {
color: #FFFFFF;
}
#cursor {
width: 60px;
height: 60px;
border-radius: 100%;
position: absolute;
pointer-events: none;
backdrop-filter: blur(3px);
-webkit-backdrop-filter: blur(3px);
-moz-backdrop-filter: blur(3px);
-khtml-backdrop-filter: blur(3px);
-o-backdrop-filter: blur(3px);
border: 1px solid rgba(255, 255, 255, 0.4);
background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.05));
transform: translateX(-30px) translateY(-30px);
}
main p {
padding-bottom: 50px;
}
@media screen and (min-width: 0px) {
header h1 .full {
display: none;
}
header h1 .short {
display: flex;
}
main section {
padding: 0 50px 0 50px;
display: flex;
flex-direction: column;
}
#introduction .fullSpaceBetween {
flex-direction: column;
}
#introduction #personImage {
margin-top: 20px;
}
#cursor {
display: none;
}
}
@media screen and (min-width: 700px) {
header h1 .full {
display: flex;
}
header h1 .short {
display: none;
}
}
@media screen and (min-width: 860px) {
main section {
padding: 50px 50px 0 50px;
}
#introduction .fullSpaceBetween {
flex-direction: row;
}
#introduction #personImage {
margin-top: 0;
}
#cursor {
display: flex;
}
}