-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
130 lines (89 loc) · 1.7 KB
/
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
/**
Palette: https://scrimba.com/links/hometown-palette
RED: #E63946
LIGHT: #F1FAEE
AQUA: #A8DADC
LIGHT BLUE: #457B9D
DARK BLUE: #1D3557
*/
body {
margin: 0;
text-align: center;
}
/* Hero section */
.hero-section{
color: #FFFFFF;
background: url("images/kolkata.jpg");
background-size: cover;
background-position: center;
display: flex;
flex-direction: column;
align-items: center;
padding: 120px 150px;
}
.hero-section>h1{
background: #1D3557;
padding: 5px 12px;
border-radius: 10px;
margin: 0;
}
.hero-section>h2{
background: #457B9D;
padding: 5px 25px;
border-radius: 10px;
font-size: 19px;
}
/* Activity section */
.activities-section{
background: #F1FAEE;
color: #1D3557;
padding: 20px;
}
.activities-section>h3{
margin-top: 0px;
font-size: 20px;
}
#activities-container{
display: flex;
justify-content: space-evenly;
}
.places-card{
width: 300px;
padding: 12px 16px ;
display: flex;
flex-direction: column;
align-items: center;
}
.places-card:hover{
border-radius: 10px;
transition-duration: 0.5s;
background: bisque;
}
.places-card>img{
height: 100px;
width: 100px;
border-radius: 50%;
}
/* GUIDE SECTION */
.guide-section{
background: #A8DADC;
color: #1D3557;
width: 400px;
margin: 50px auto;
padding: 24px 16px;
border-radius: 10px;
border-bottom: 5px solid;
display: flex;
justify-content: space-around;
}
.guide-img{
width: 180px;
}
.guide-about{
display: flex;
flex-direction: column;
justify-content: center;
}
.guide-about>p{
font-style: italic;
}