-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
125 lines (112 loc) · 2.07 KB
/
Copy pathmain.css
File metadata and controls
125 lines (112 loc) · 2.07 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
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
body {
background-color: rgba(187, 204, 241, 0.6);
background-blend-mode: multiply;
background-image: url('./resource/bg.png');
background-size: cover;
}
div {
text-align: center;
}
footer {
vertical-align: auto;
margin-top: 115px;
text-align: center;
}
.rounded-button {
transition-duration: 0.5s;
align-items: center;
text-align: left;
display: flex;
color: #fff;
justify-content: center;
border-radius: 20px;
background: #171510;
width: 100%;
height: 6vh;
margin: 1.6vh 0px 0px 0px;
cursor: pointer;
text-decoration: none;
}
.rounded-button:hover {
transition-duration: 0.5s;
background: #27241d;
opacity: 0.8;
}
@keyframes loading {
0% {
background-color: rgba(254, 255, 246, 0.75);
transform: rotateX(-35deg);
}
100% {
background-color: rgba(254, 255, 246, 0.85);
transform: rotateX(0deg);
}
}
.maindiv {
animation: loading;
animation-duration: 1.5s;
border-radius: 1.5%;
background-color: rgba(254, 255, 246, 0.85);
text-align: center;
align-items: center;
margin: 0px auto;
margin-top: 12.5vh;
padding-left: 5vw;
padding-right: 5vw;
padding-top: 10vh;
padding-bottom: 12vh;
width: 18vw;
position: relative;
}
.space{
width: 0.5rem;
}
.btndiv {
margin: 10% 0% 0% 0%;
align-content: center;
}
.describe {
margin: 0%;
text-align: center;
}
.name {
margin: 1vh 0px 1vh 0px;
font-size: 45px;
}
.intro {
margin: 0%;
font-family:'Times New Roman', Times, serif;
line-height: 3vh;
font-weight: 300;
font-size: 17px;
}
.avatar {
border-radius: 50%;
height: 15.5vh;
width: 15.5vh;
}
@media (max-width: 1200px) {
.maindiv {
width: 40vw;
}
}
@media (max-width: 1020px) {
.maindiv {
width: 50vw;
}
}
@media (max-width: 850px) {
.maindiv {
width: 60vw;
}
}
@media (max-width: 500px) {
.maindiv {
width: 70vw;
}
}
@media (max-width: 300px) {
.name{
font-size: 32px;
}
}