-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChampionCoffee.css
More file actions
118 lines (100 loc) · 1.99 KB
/
ChampionCoffee.css
File metadata and controls
118 lines (100 loc) · 1.99 KB
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
body, html {
height: 100%;
}
/* The hero image */
.hero-image {
/* Use "linear-gradient" to add a darken background effect to the image (photographer.jpg). This will make the text easier to read */
background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("CoffeeBackground.jpeg");
/* Set a specific height */
height: 100%;
/* Position and center the image to scale nicely on all screens */
background-position: center;
background-repeat: no-repeat;
background-size: cover;
position: relative;
}
/* Place text in the middle of the image */
.hero-text {
text-align: center;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: white;
}
.CC {
font-size: 75px;
color: white;
text-shadow: 10px 10px 10px #000000;
font-family: 'Sofia';
}
.p {
font-family: 'Roboto';
}
.navbar {
margin-bottom: 0px;
color: black;
}
.logo {
animation-duration: 2s;
animation-name: slidein;
}
@keyframes slidein {
from {
margin-left: 200%;
width: 100%;
}
to {
margin-left: 0%;
width: 100%;
}
}
.navbar-brand{
color: tan !important;
}
.nav-link{
color: tan !important;
}
footer{
background-color: #292b2c;
color: tan !important;
}
.caption {
position: absolute;
left: 0;
top: 50%;
width: 100%;
text-align: center;
color: #292b2c;
}
.caption span.border {
background-color: #292b2c;
color: tan;
padding: 18px;
font-size: 25px;
letter-spacing: 10px;
border: 2px solid black;
}
.bgimg-1, .bgimg-2, .bgimg-3 {
position: relative;
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.bgimg-1 {
background-image: url("CoffeeBackground.jpeg");
min-height: 250px;
}
.bgimg-2 {
background-image: url("images/CoffeeBackground1.jpeg");
min-height: 250px;
}
.bgimg-3 {
background-image: url("images/CoffeeBackground2.jpeg");
min-height: 250px;
}
.darkenBackground {
background-color: #292b2c;
color: tan;
}