-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
124 lines (109 loc) · 1.88 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
122
123
124
/**
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;
font-family: 'Playfair Display', serif;
}
img {
width: 100px;
border-radius: 50%;
}
.hero {
background-image: url("images/torshov.jpg");
width: 740px;
height: 343px;
margin: 0px auto;
background-size: cover;
}
#section1{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
#place {
padding: 5px 8px;
background-color: #1D3557;
width: 225px;
border-radius: 10px;
/* margin: 0 auto; */
color: #FFFFFF;
}
#culture {
padding: 5px 10px;
width: 412px;
background: #457B9D;
border-radius: 10px;
color: #FFFFFF;
margin: 5px auto;
}
.activity {
width: 720px;
height: 378px;
left: 0px;
top: 343px;
margin: 0px auto;
background-color: #F1FAEE;
padding: 20px 10px;
}
.guide {
margin: 0px auto;
width: 720px;
height: 394px;
left: 0px;
top: 721px;
background: #FFFFFF;
display: flex;
}
#block {
display: flex;
justify-content: center;
align-items: center;
padding: 10px;
}
#park,
#theatre,
#sports {
margin: 0px auto;
padding: 20px;
}
#per {
width: 180px;
height: 248.67px;
left: 173px;
top: 73px;
padding: 10px;
background: url(per.jpg);
border-radius: 20px;
}
#guide-box {
width: 400px;
height: 294px;
left: 160px;
top: 50px;
display: flex;
padding: 10px 5 px;
align-items: center;
background: #A8DADC;
box-shadow: 0px 6px 0px #1D3557;
border-radius: 10px;
margin: 50px auto;
}
#whataboutGuide {
padding: 10px;
}
a{
color: #FFFFFF;
text-decoration: none;
}
#place:hover{
background-color:pink ;
text-shadow: 0px 0px 2px black;
}