-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
69 lines (63 loc) · 1.19 KB
/
style.css
File metadata and controls
69 lines (63 loc) · 1.19 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
body {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.home {
margin: 1rem;
}
nav img {
width: 100px;
}
nav {
background-color: darkgrey;
display: flex;
align-items: center;
justify-content: space-around;
}
nav a {
text-decoration:none;
font-size: 1.6rem;
color: white;
}
nav .link a {
margin: 1rem;
}
.home_img {
width:80vw ;
height: 75vh;
background-image: url("img/Bauernhoftag.jpg");
background-size: cover;
background-repeat: no-repeat;
margin: 0 auto;
}
.menu {
display: flex;
flex-direction: column;
align-items: center;
}
.card {
width: 20vw;
height: 20vh;
border-radius: 50px;
border: 4px solid red
}
.farmer {
background-image: url("img/gettyimages-904559680-612x612.jpg");
background-size: cover;
margin: auto;
background-repeat: no-repeat;
}
.cow {
background-image: url("./img/cow.jpg");
background-size: cover;
margin: auto;
background-repeat: no-repeat;
}
@media screen and (min-width:800px) {
.menu {
display: flex;
flex-direction: row;
justify-content: space-around;
}
}