-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdogsupplies.css
145 lines (140 loc) · 2.14 KB
/
dogsupplies.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
145
* {
font-family: verdana;
margin: 0;
padding: 0;
text-decoration: none;
}
.HeaderBox {
height: 68px;
width: 100%;
/*position: fixed;
opacity: 0.9;
background: #000000;*/
}
.titlebar {
float: right;
}
.line1 figure {
display: inline-block;
}
.line1 figcaption {
color: #8123ec;
text-align: center;
font-size: 1.4em;
}
.line2 figure {
display: inline-block;
}
.line2 figcaption {
color: #8123ec;
text-align: center;
font-size: 1.4em;
}
nav ul ul {
display: none;
}
nav ul li:hover > ul {
display: block;
}
nav ul {
/*background: #000000;
opacity: 0.9;*/
display: flex;
position: relative;
list-style: none;
padding: 0 20px;
padding-top: 10px;
}
nav ul:after {
content: "";
clear: both;
display: block;
}
nav ul li {
float: left;
}
nav ul li:hover {
background: #8123ec;
opacity: 20;
}
nav ul li:hover a {
color: #ffffff;
}
nav ul li a {
display: block;
padding: 5px 20px;
color: #000000;
text-decoration: none;
}
nav ul ul {
background: #8123ec;
border-radius: 0px;
padding: 0;
position: absolute;
top: 100%;
}
nav ul ul li {
float: none;
border-top: 1px solid #8123ec;
border-bottom: 1px solid #8123ec;
position: relative;
}
nav ul ul li a {
padding: 15px 40px;
color: rgb(255, 255, 255);
}
nav ul ul li a:hover {
background: #6510c5;
}
footer {
bottom: 0px;
width: 100%;
background-color: #000000;
opacity: 0.9;
color: #d9d9d9;
}
.main-content {
display: flex;
}
.main-content .box {
flex-basis: 50%;
padding: 10px 20px;
}
.box h2 {
font-size: 1.125rem;
font-weight: 600;
text-transform: uppercase;
}
.box .content {
margin: 20px 0 0 0;
}
.left .content p {
text-align: justify;
}
.left .content .social {
margin: 20px 0 0 0;
}
.left .content .social a {
padding: 0 2px;
}
.left .content .social a span {
height: 40px;
width: 40px;
color: #8123ec;
line-height: 40px;
text-align: center;
font-size: 18px;
border-radius: 5px;
}
.left .content .social a span:hover {
background: #8123ec;
color: #000000;
}
button {
padding: 10px 20px;
background-color: #ad65f0;
color: #000000;
border: none;
border-radius: 5px;
width: 30%;
}