-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbrand.css
134 lines (115 loc) · 1.85 KB
/
brand.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
*
{
margin: 0%;
padding: 0%;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
box-sizing: border-box;
text-decoration: none;
list-style-type: none;
}
.header
{
display: flex;
align-items: center;
justify-content: space-between;
padding: 1rem 2rem;
background: rgba(255, 2, 2, 0.973);
text-decoration: none;
}
.brand h4
{
font-weight: 600;
font-family: 'Courier New', Courier, monospace;
}
nav ul
{
display: flex;
}
nav li
{
margin-left: 1rem;
text-decoration: none;
}
.slider
{
margin-bottom: 1rem;
}
.slide-img{
width: 100%;
height: 15pc;
background-size: contain;
background-repeat: no-repeat;
background-position: center;
position: relative;
}
.slide-badge
{
position: absolute;
width: 120px;
height: 60px;
display: flex;
justify-content: center;
flex-direction: column;
font-size: .9rem;
border-radius: 1.5px;
background: #fff;
padding: .5rem;
font-weight: 600;
}
.slider-info h3
{
font-size: .9rem;
color: #333;
margin-bottom: .6rem;
}
.slider-btn
{
width: 80px;
height: 40px;
background-color: black;
text-align: center;
position: absolute;
justify-content: center;
display: block;
}
footer
{
background: black;
height: auto;
width: auto;
}
.footer-content
{
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
color: white;
}
.social
{
display: flex;
justify-content: center;
align-items: center;
margin: 1rem 0rem 3rem 0rem;
}
.social li
{
margin: 0 .6rem;
color: #fff;
}
.social a:hover i
{
color: blue;
}
.footer-bottom p
{
color: white;
text-align: center;
}
.footer-bottom span
{
text-transform: uppercase;
opacity: .5;
font-weight: 300;
}