-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
50 lines (41 loc) · 843 Bytes
/
styles.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
/* Add this to styles.css */
body {
background-color: rgba(0, 128, 128, 1.00);
margin: 0;
display: grid;
grid-template-columns: 1fr 1fr; /* Two equal columns */
min-height: 100vh; /* Ensure the body takes at least the full height of the viewport */
}
.left, .right {
display: flex;
align-items: center;
justify-content: center;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.button button {
cursor: pointer;
}
.bitcoin-image {
max-width: 100%;
height: auto;
}
.bitcoin-container {
position: relative;
margin-bottom: 20px;
}
.bitcoin-image {
animation: rotate 3s infinite linear;
}
@keyframes rotate {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}