-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathApp.css
More file actions
83 lines (77 loc) · 1.43 KB
/
App.css
File metadata and controls
83 lines (77 loc) · 1.43 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
/* body {
} */
.header {
display: flex;
justify-content: space-around;
align-items: center;
width: 100%;
background-color: #0091cf;
}
.Bilka-logo {
max-height: 50px;
}
.Salling-logo {
max-height: 50px;
}
h1 {
margin: 0;
text-align: center;
flex-grow: 1;
color: white;
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
font-weight: 700;
}
.App {
text-align: center;
display: flex;
flex-wrap: wrap;
margin: 0px;
justify-content: space-evenly;
}
.nav {
margin: 30px 0px 30px 0px;
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
}
.store {
width: 100%;
}
.store h3 {
color: #0091cf;
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
font-weight: 700;
font-size: 20px;
}
.store p {
color: #0091cf;
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
font-weight: 500;
font-size: 20px;
}
.button-wrapper button {
background-color: #0091cf;
display: block;
padding: 10px 20px;
border: none;
border-radius: 5px;
color: white;
font-size: 15px;
font-weight: 600;
}
.button-wrapper button:hover {
background-color: #3fb4e6;
transition: all 0.5s ease;
}
@media only screen and (max-width: 1024px) {
.button-wrapper {
width: 650px;
justify-content: center;
display: flex;
margin: 5px 0px 5px 0px;
}
.button-wrapper button {
width: 230px;
}
}