-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
43 lines (38 loc) · 763 Bytes
/
index.css
File metadata and controls
43 lines (38 loc) · 763 Bytes
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
body {
margin: 0;
font-family: 'Arial', sans-serif;
}
.main {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
background-color: #f0f0f0;
}
.content-link {
text-decoration: none;
}
.content {
background-color: #6699CC;
width: 80%;
max-width: 50rem;
height: 8rem;
margin: 1rem;
border-radius: 1rem;
display: flex;
align-items: center;
justify-content: center;
transition: transform 0.5s ease;
cursor: pointer;
}
.content-text {
width: 20rem;
font-size: 1.6rem;
color: white;
text-align: center;
line-height: 1.4;
}
.content:hover {
transform: scale(1.1);
}