-
Notifications
You must be signed in to change notification settings - Fork 0
/
website.css
80 lines (60 loc) · 1011 Bytes
/
website.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
.nav a {
color: red;
font-size: 11px;
font-weight: bold;
padding: 14px 10px;
text-transform: uppercase;
}
.nav li {
display: inline;
}
.jumbotron {
background-image: url("background.jpg");
background-repeat: no-repeat;
background-size: cover;
height: 600px;
}
.jumbotron .container {
position: relative;
top:100px;
}
.jumbotron h1 {
color: blue;
font-size: 48px;
font-family: 'Shift', sans-serif;
font-weight: bold;
}
.jumbotron p {
font-size: 30px;
color: yellow;
}
.learn-more {
background-color: #f7f7f7;
}
.learn-more h3 {
font-family: 'Shift', sans-serif;
font-size: 18px;
font-weight: bold;
}
.learn-more a {
color: #00b0ff;
}
.neighborhood-guides {
background-color: #efefef;
border-bottom: 1px solid #dbdbdb;
}
.neighborhood-guides h2 {
color:#393c3d;
font-size: 24px;
}
.neighborhood-guides p {
font-size: 15px;
margin-bottom: 13px;
}
/* pseudo class below
hi:first-letter
{
color: red;
font-size: 4em;
}
*/