-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage.css
More file actions
48 lines (42 loc) · 826 Bytes
/
page.css
File metadata and controls
48 lines (42 loc) · 826 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
44
45
46
47
48
body {
background-color: white;
}
h1 {
color: black;
text-align: center;
font-size: 50px;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
div {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
}
div img {
width: 400px;
height: 300px;
border: 2px solid rgb(27, 27, 27);
border-radius: 13px;
box-shadow: 4px 7px 7px 0px #00000042;
cursor: pointer;
margin: 10px;
transition: 400ms;
}
div img:hover {
transform: scale(1.05);
border: white;
border-radius: 30px;
}
button {
padding: 1%;
border-radius: 10%;
border: none;
background-color: rgb(80, 153, 80);
transition: 300ms;
}
button:hover {
border-radius: 50%;
background-color: green;
cursor: pointer;
}