-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
74 lines (72 loc) · 1.21 KB
/
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
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
html{
scroll-behavior: smooth;
}
body{
margin: 0;
padding: 0;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.header{
height: 20rem;
background-image: url(img/img1.jpg);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
display: flex;
justify-content: center;
align-items: center;
}
.header>h1{
color: white;
font-size: 54px;
}
.catelog1{
text-align: center;
padding: 5px 0;
}
.catelog1>h1, .catelog2>h1{
background-color: antiquewhite;
padding: 3px 0;
}
.content{
display: flex;
justify-content: space-around;
align-items: center;
}
.catelog{
width: 30%;
}
.catelog img{
width: 50%;
}
.catelog>h1, .Scontent>h1{
font-size: 26px;
}
.catelog p{
text-align: justify;
}
.catelog2 {
text-align: center;
padding: 5px;
}
.storyContainer{
display: flex;
justify-content: space-around;
align-items: center;
}
.Scontent{
width: 30%;
display: flex;
flex-direction: column;
padding: 5px;
}
footer{
height: 2rem;
display: flex;
justify-content: center;
align-items: center;
background-color: black;
color: white;
text-align: center;
padding: 5px 0;
}