-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
63 lines (47 loc) · 911 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
51
52
53
54
55
56
57
58
59
60
61
62
63
body {
text-align: center;
font-family: 'Happy Monkey', cursive;
background: linear-gradient(#FFFF00, #FF0000);
color: black;
}
#header {
padding: 40px 25px;
display: flex;
flex-direction: column;
font-size: large;
color: yellow;
background-image: url("https://borkena.com/wp-content/uploads/2017/12/Mekelle-City-.jpg");
background-size: cover;
height: 300px;
}
.top {
margin-top: 40px;
}
.items {
display: block;
}
img {
height: 220px;
width: 450px;
border: 4px solid lightblue;
}
footer {
font-style: italic;
font-size: large;
}
.more-content {
display: none;
}
.show-more-btn {
background-color: #ADD8E6;
color: white;
padding: 10px;
border: none;
cursor: pointer;
margin-top: 10px;
font-size: medium;
border-radius: 7px;
}
.show-more-btn:hover {
background-color: #ADD8E6;
}