-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
144 lines (125 loc) · 3.39 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
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
*,*before,*after {
box-sizing: border-box;
}
body {
margin: 0;
padding: 0;
font-family: 'Cantarell', sans-serif;
font-family: 'Oxygen', sans-serif;
font-family: 'Roboto', sans-serif;
}
/* Brand Description */
.i1 {
grid-area: brand;
color: #2142ac;
font-family: 'Roboto', sans-serif;
font-weight: 900;
font-size: 1.04em;
margin: 0 auto;
}
/* Tagline Description */
.i2 {
grid-area: tagline;
color: #832cda;
font-family: 'Oxygen', sans-serif;
font-size: 1.06em;
font-weight: 700;
margin: 20px auto
}
/* Big Easy Savings RedDragon logo */
.i3 {
grid-area: logo;
background-image: url("./artwork/RedDragon.jpg");
background-repeat: no-repeat;
background-size: contain;
}
/* About US Menu Button */
.i4 {
grid-area: about;
background-image: url("./artwork/about_bes.png");
background-size: contain;
background-repeat: no-repeat;
max-height: 51%;
max-width: 60% ;
}
/* Contact US Menu Button */
.i5 {
grid-area: contact;
background-image: url("./artwork/contact_us.png");
background-size: contain;
background-repeat: no-repeat;
max-height: 51%;
max-width: 60%;
}
/* lava star explosion under Design Events*/
.i6 {
grid-area: star;
background-image: url("./artwork/lava-star.png");
background-size: contain;
background-repeat: no-repeat;
}
.i7 {
grid-area: arts;
background-image: url("./artwork/digital_arts.png");
background-size: contain;
background-repeat: no-repeat;
max-height: 69px;
}
.i8 {
grid-area: printed;
background-image: url("./artwork/printed_perfections.png");
background-size: contain;
background-repeat: no-repeat;
max-height: 69px;
}
.i9 {
grid-area: designs;
background-image: url("./artwork/innovative_designs.png");
background-size: contain;
background-repeat: no-repeat;
max-height: 69px;
}
.i6 img{
max-height: 69px;
max-width: 96%;
}
/* Header Logo Menu Buttons with Grid Area Layout */
.grid-container {
margin: 10px auto;
min-width: 728;
max-width: 1440px;
display: grid;
grid: repeat(3, minmax(30%, 1fr)) / repeat(3, minmax(220px, 1fr));
padding: 1rem;
column-gap: 20px;
/* With areas */
grid-template-areas:
"brand about arts"
"tagline contact printed "
"logo star designs";
/* Spanning areas together as a whole with background image */
grid-area: span 3 / span 3;
background-image: url("./artwork/volcanopuff.png");
background-repeat: no-repeat;
background-size: cover;
background-position: center top;
}/* End of Grid Container */
/* Footer with Flexbox Layout */
.footer >*{
display: inline-flex;
}
.footer-container {
display: flex;
flex-direction: row;
justify-content: space-around;
align-items: center;
background-color: #a06409dc;
color: #f0e4fd;
font-family: 'Oxygen', sans-serif;
font-weight: 728;
font-size: 1.1em;
padding: 1em;
margin: 0 auto;
min-width: 600;
max-width: 1440px;
}