-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathstyle.css
80 lines (63 loc) · 1.08 KB
/
style.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
/* Allgemein */
body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
font-size: 1.6rem;
}
.limegreen {
color: limegreen;
}
#products,
#about {
padding-top: 100px;
}
.navbar,
.carousel {
border-bottom: 1px solid #888;
}
/* Navigation */
.nav-link {
cursor: pointer;
}
.nav-link:active,
.nav-link:hover {
color: limegreen !important;
}
.icon-link:active svg,
.icon-link:hover svg {
color: limegreen;
}
/* Slider */
.slider-image {
width: 100vw;
height: 70vh;
background-size: cover;
background-position: center;
}
/* Produkt Cards */
.card-image {
height: 500px;
background-size: cover;
background-position: center;
}
@media (max-width: 991px) {
.card-group {
display: flex;
flex-flow: column wrap;
}
}
/* Über uns */
.about-image {
width: 280px;
height: 280px;
border-radius: 50%;
background-position: center;
background-size: cover;
}
/* Footer */
.footer {
font-family: sans-serif;
font-size: 1rem;
text-align: center;
border-top: 1px solid #888;
}