-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
94 lines (82 loc) · 1.61 KB
/
Copy pathstyles.css
File metadata and controls
94 lines (82 loc) · 1.61 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
84
85
86
87
88
89
90
91
92
93
94
* {
margin: 0;
padding: 0;
}
h1 {
color: rgb(196, 100, 12);
text-align: center;
}
p {
text-align: center;
}
body {
height: 100vh;
color:rgba(14, 129, 43, 0.8);
font-family: 'merriweather', serif;
font-size: 16px;
font-weight: 400;
}
.top {
height: 35vh;
min-height: 175px;
width: 100%;
position: relative;
background-image: url(back.jpg);
background-size: cover;
background-position: center;
}
.title {
padding: 8px;
border: 2px solid rgba(0, 0, 0, 0.8);
border-radius: 8px;
background-color: rgba(255, 255, 255, 0.8);
}
.jumbotron {
display: grid;
grid-template-rows: auto 1fr auto;
place-items: center;
padding: 4vh 0 6vh;
height: 25vh
}
.add {
margin: 8px;
border: 2px solid rgba(0, 0, 0, 0.8);
border-radius: 8px;
background-color: rgba(255, 255, 255, 0.8);
display: flex;
}
.add__container {
padding: 8px;
justify-content: center;
grid-gap: 8px;
}
.bottom {
display: flex;
background: lightblue;
width: 100%;
height: 65vh;
}
.plant__container {
margin: auto;
display: flex;
align-items: center;
justify-content: space-around;
flex-wrap: wrap;
max-width: 60%;
height: 60%;
}
.plant__clearfix {
width: 100px;
height: 120px;
margin: 8px;
border: 2px solid black;
border-radius: 8px;
box-shadow: 0 8px 6px -8px rgba(0, 0, 0, 0.6);
background-color: pink;
text-align: center;
transition: .1s;
}
.plant__clearfix:hover {
transform: translateY(-.1rem);
box-shadow: 0 8px 6px -7px rgba(0, 0, 0, 0.6);
}