-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
78 lines (66 loc) · 1.14 KB
/
style.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
html {
scroll-behavior: smooth;
}
body{
background-color: #fff2ac;
}
header {
color: #522500;
/* credit: Photo by Ayesha Firdaus on Unsplash */
height: 600px;
text-align: center;
}
header h1 {
font: outline;
font-size: 5rem;
font-family: 'Berkshire Swash', cursive;
color: #FFD700;
padding-top: 4rem;
background-color: rgba(0, 0, 0, 0.3);
text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.jumbo {
max-width: 700px;
margin: 50px auto;
text-align: center;
}
.jumbotron {
background-color: #815531;
color: #fff2ac;
box-shadow: 10px 10px 5px grey;
}
.btn {
background-color: #FFD700;
color: #000;
}
footer {
color: #fff2ac;
background-color: #000;
text-align: center;
}
h3 {
font-family: 'Berkshire Swash', cursive;
color: #FFD700;
padding: 1.5rem;
}
hr{
background-color: #FFD700;
}
.row img{
width: 50px;
}
#logo{
width: 20rem;
}
.credit {
text-align: center;
background-color: #fff;
}
@media screen and (min-width: 600px) {
img {
transition: transform .2s;
}
img:hover {
transform: scale(1.2);
}
}