forked from GCA-Classroom/03-building-for-accessibility
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
91 lines (80 loc) · 1.33 KB
/
Copy pathstyle.css
File metadata and controls
91 lines (80 loc) · 1.33 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
body {
font-family: 'Arial Narrow', Arial, Helvetica, sans-serif;
background: #f5f5f5;
color: #cccccc;
text-align: center;
padding: 0;
margin: 0;
}
.header {
background: #006491;
padding-top: 20px;
padding-bottom: 20px;
box-sizing: border-box;
}
.banner {
font-family: 'Bebas Neue', sans-serif;
font-size: 32px;
color: white;
}
.nav {
margin-top: 20px;
}
.nav a {
color: #cccccc;
text-transform: uppercase;
text-decoration: none;
font-size: 18px;
margin: 0 15px;
}
.tagline {
font-size: 26px;
font-weight: bold;
text-transform: uppercase;
color: #bbbbbb;
margin: 30px 0 15px;
}
.description {
font-size: 16px;
color: #bbbbbb;
max-width: 600px;
margin: 0 auto;
line-height: 1.4;
}
.order-now {
width: 200px;
display: inline-block;
background: #E31837;
color: #801525;
padding: 12px 24px;
font-size: 18px;
text-transform: uppercase;
text-decoration: none;
font-weight: bold;
border-radius: 3px;
margin-top: 30px;
}
.main-content {
display: flex;
justify-content: center;
gap: 20px;
flex-wrap: wrap;
max-width: 800px;
margin: 40px auto;
}
.deal {
width: 45%;
border-radius: 5px;
}
.deal img {
width: 100%;
height: auto;
border-radius: 5px;
max-height: 200px;
object-fit: cover;
}
.deal p {
font-size: 12px;
font-weight: bold;
color: #bbbbbb;
}