-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathattractions.css
58 lines (58 loc) · 1.01 KB
/
attractions.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
*{
font: 1em Roboto;
}
header{
width: 100%;
height: 65vh;
background: url(image11-1.jpg);
background-position: center;
background-size: cover;
}
.header-title{
position: absolute;
text-transform: uppercase;
text-align: center;
height: 300px;
font-family: Roboto;
color: white;
top: 32%;
left: 20%;
transform: (50%, 50%)
}
.container{
width: 80%;
margin: 0 auto;
}
.container .full-div{
width: 100%;
display: flex;
}
.container .image-div{
width: 35%;
}
.container .image-div img{
width: 100%;
padding-top: 28px;
}
.container .para-content{
width: 65%;
padding: 0 0 30px 20px;
font-size: .88em;
text-align: justify;
}
.container .para-content h3{
font-weight: bolder;
color: #27bcad;
font-size: 22px;
padding: 0;
}
.container .para-content .para-content-link{
padding: 5px 10px;
border: 2px solid orange;
transition: .2s linear;
}
.container .para-content .para-content-link:hover{
text-decoration: none;
background-color: orange;
color: #000;
}