-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshops.css
86 lines (71 loc) · 1.71 KB
/
shops.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
body{
background: #EDF2F5;
color: #130933;
font-family: Raleway;
}
#search{
margin-bottom: 20px;
color: black;
}
.navbar-default{
background: #28237A;
border-color: #878ea3;
}
.navbar-default .navbar-nav>li>a{
margin-top: 20px;
color: white;
}
.navbar-default .navbar-brand{
margin-top: 20px;
color: white;
}
.navbar-default .navbar-nav>li>a:hover {
background-color: white;
color: grey;
}
.navbar-default .navbar-brand:hover{
background-color: white;
color: grey;
}
.navbar-default .navbar-nav .navbar-right>li>a{
margin-top: 20px;
color: white;
}
.jumbotron{
box-shadow: 0px, 8px, 16px, 24px rgba(0,0,0,0.5);
background: #B7E6E8;
color: #161140;
}
h1{
font-family: Modern Antiqua;
}
h2{
font-family: Modern Antiqua;
color: #5B2191;
}
#myBtn {
display: none; /* Hidden by default */
position: fixed; /* Fixed/sticky position */
bottom: 20px; /* Place the button at the bottom of the page */
right: 30px; /* Place the button 30px from the right */
z-index: 99; /* Make sure it does not overlap */
border: none; /* Remove borders */
outline: none; /* Remove outline */
background-color: #22804F; /* Set a background color */
color: white; /* Text color */
cursor: pointer; /* Add a mouse pointer on hover */
padding: 10px; /* Some padding */
border-radius: 10px; /* Rounded corners */
font-size: 18px; /* Increase font size */
}
#myBtn:hover {
background-color: #555; /* Add a dark-grey background on hover */
}
.footer {
left: 0;
bottom: 0;
width: 100%;
background-color: #28237A;
color: white;
text-align: center;
}