-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
114 lines (93 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
/**
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: 'Syncopate', sans-serif;
}
img {
width: 100px;
}
#hero {
background-image: url("https://d27rt3a60hh1lx.cloudfront.net/content/musehq/showcase/asharpquill.jpg");
background-size: cover;
height: 343px;
display: flex;
flex-direction: column;
align-items: center;
color: white;
font-family: 'Orbitron', sans-serif;
}
a {
color: white;
}
#hero-intro {
width: 350px;
height: 34px;
border: 0px solid #457B9D;
background-color: #457B9D;
border-radius: 5px;
margin-top: 122px;
margin-bottom: 0px;
padding: 3px 0px 5px;
}
#hero-text {
font-size: 19px;
width: 355px;
border: 0px solid #1D3557;
background-color: #1D3557;
border-radius: 5px;
margin-top: 11px;
padding:px 29px 8px;
}
#activities {
background: #F1FAEE;
padding-top: 15px;
font-size: 15px;
}
p {
font-size: 10px;
font-weight: bold;
}
.act-flex {
display: flex;
justify-content: space-around;
}
.width {
width: 200px;
}
.para {
font-size: 8px;
}
.circle {
border: 0px solid white;
border-radius: 50%;
width: 100px;
height: 100px;
}
#card {
width: 150px;
padding: 23px 7px;
}
#guide {
display: flex;
margin: 0 auto;
width: 400px;
padding: 0 13px;
border-bottom: 6px solid #457B9D;
margin: 50px auto;
background: #A8DADC;
color: #1D3557;
border-radius: 6px;
}
#guide:hover {
border-bottom: 6px solid #FF1713;
background: #009B9B;
border-radius: 6px;
}