-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
108 lines (90 loc) · 1.56 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
/**
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:Arial, Helvetica, sans-serif;
}
#header{
background-image: url(images/Background.jpg);
background-size: cover;
height: 500px;
display: flex;
flex-direction: column;
align-items:center;
justify-content: center;
gap: 10px;
}
h1{
background: #1D3557;
}
h2{
background: #457B9D;
width: 500px;
}
h1,h2{
margin: 0;
color: white;
padding: 6px;
border-radius: 10px;
}
#activity{
background: #F1FAEE;
margin-top: 0px;
overflow:hidden
}
#activities-header{
margin: 40px auto;
width: auto;
}
#container{
display: flex;
justify-content: center;
}
.bold{
font-weight: bold;
width: 250px;
}
.round{
width: 120px;
height: 120px;
border-radius: 50%;
}
.describe{
width: 350px;
}
.spots{
display: flex;
flex-direction: column;
align-items: center;
padding: 20px;
height: 400px;
}
#container-2{
margin: auto;
display: flex;
flex-direction: row;
color: #1D3557;
background:#A8DADC;
padding: 20px 10px;
border-radius:30px;
margin: 50px auto;
width: 500px;
height: 250px;
box-shadow: 10px 10px #1D3557;
}
.self-pic{
border-radius:20px;
}
.italic{
font-style: italic;
}
#brief_intro{
padding: 30px;
}