-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
126 lines (95 loc) · 1.76 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
125
/**
Palette: https://scrimba.com/links/hometown-palette
RED: #E63946
LIGHT: #F1FAEE
AQUA: #A8DADC
LIGHT BLUE: #457B9D
DARK BLUE: #1
*/
body {
margin: 0;
text-align: center;
font-family: Arial, Helvetica, sans-serif;
color: #1D3557;
}
img {
width: 100px;
}
/* utility classes*/
.main-div-width {
width: 720px;
}
/*|| hero section */
#hero-div {
height: 343px;
background-image: url(images/torshov.jpg);
background-size: cover;
margin: 20px auto 0px auto;
display: flex;
flex-direction: column;
}
#hero-text {
margin: 118px auto 4px auto;
color: #F1FAEE;
background-color: #1D3557;
padding: 4px 18px;
border-radius: 10px;
}
#hero-text2 {
width: 355px;
margin: 6px auto 0 auto;
padding: 6px 27px;
color: #F1FAEE;
background-color: #457B9D;
border-radius: 10px;
}
/*|| activities section*/
#activities-main-div {
background-color: #F1FAEE;
margin: 0 auto;
}
#activities-div {
display: flex;
justify-content: center;
}
#activities-title-text {
padding-top: 26px;
padding-bottom: 30px;
margin-top: 0;
}
.activity-div {
margin: 0 10px ;
width: 200px;
}
.activity-text {
font-weight: 400;
padding-bottom: 16px;
}
.circle-pic {
border-radius: 50%;
}
/*|| guide section*/
#guide-main-div {
margin: 0 auto;
}
#guide-card-div {
width: 400px;
display: flex;
flex-direction: row-reverse;
justify-content: center;
margin: 50px auto;
border-radius: 10px;
border-bottom: 6px solid #1D3557;
background-color: #A8DADC;
}
#guide-text {
width: 189px;
}
#guide-img {
width: 180px;
margin: 22px 6px;
border-radius: 10px;
}
#guide-main-text-div {
padding-top: 34px;
}