-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
47 lines (40 loc) · 798 Bytes
/
style.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
body {
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
background-color: #f4f4f4;
}
#up-arrow {
height: 10%;
}
h1 {
font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
color: #333;
text-align: center;
}
p {
font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
color: #333;
text-align: center;
}
code {
background-color: white;
}
#guide {
max-width: 100%;
height: auto;
margin-top: 20px;
box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.25);
}
.bmac-link {
box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.25);
border-radius: 12px;
transition: transform 0.25s ease-in-out;
}
.bmac-link:hover {
transform: scale(1.1);
}