-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfinal.css
More file actions
76 lines (68 loc) · 1.12 KB
/
final.css
File metadata and controls
76 lines (68 loc) · 1.12 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
h1 {
width: 100%;
background-color: skyblue;
height: 6rem;
display: flex;
justify-content: center;
align-items: center;
font-family: cursive;
font-size: 1.3rem;
}
footer {
width: 100%;
height: 4rem;
background-color: skyblue;
display: flex;
justify-content: center;
align-items: center;
position: fixed;
bottom: 0;
font-family: cursive;
font-size: 0.9rem;
}
.button{
display: flex;
justify-content: space-evenly;
flex-wrap: wrap;
margin-top: 4rem;
background-color: salmon;
width: 100%;
}
.image_text {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin: 8rem;
}
.size{
margin: 10rem auto;
display: flex;
justify-content: space-evenly;
flex-wrap: wrap;
background-color: gray;
}
button {
width: 130px;
cursor: pointer;
margin: 12px auto;
background-color: skyblue;
color: black;
}
img {
width: 12rem;
height: 10rem;
}
#txt {
font-family: cursive;
color: black;
display: flex;
justify-content: center;
margin-top: 20px;
font-size: 1rem;
}