-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
58 lines (54 loc) · 1.16 KB
/
main.css
File metadata and controls
58 lines (54 loc) · 1.16 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
body {
font-family: "Momo Trust Display", sans-serif;
font-weight: 400;
font-style: normal;
color: rgb(0, 0, 0);
background-image: radial-gradient(
circle at 10px 10px,
#111 1px,
transparent 0
),
radial-gradient(circle at 30px 30px, #111 1px, transparent 0);
background-size: 40px 40px;
background-position: 0 0, 20px 20px;
overflow: hidden;
}
.MainBody {
display: block;
align-self: center;
background-color: rgb(255, 255, 255);
height: 50vh;
width: 50vw;
margin: 0 auto;
border-radius: 20px;
text-align: center;
border: solid 0.3em;
position: relative;
transform: translateY(45%);
border-color: rgb(0, 0, 0);
transition: all 0.8s ease;
}
button {
background: #ffffff;
font-family: inherit;
padding: 0.6em 1.3em;
font-weight: 900;
font-size: 18px;
border: 3px solid black;
border-radius: 0.4em;
box-shadow: 0.1em 0.1em;
cursor: pointer;
}
button:hover {
transform: translate(-0.05em, -0.05em);
box-shadow: 0.15em 0.15em;
}
button:active {
transform: translate(0.05em, 0.05em);
box-shadow: 0.05em 0.05em;
}
.logo_img {
width: 15vw;
height: auto;
transition: transform 0.8s ease;
}