-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathweb.css
More file actions
57 lines (46 loc) · 967 Bytes
/
Copy pathweb.css
File metadata and controls
57 lines (46 loc) · 967 Bytes
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
*{
margin: 0 !important;
padding: 0 !important;
box-sizing: border-box;
}
.navbar{
background-color: rgb(0, 0, 0, 0.3);
}
.nav-link:hover{
color: #084d31 !important;
}
section{
height: 100vh;
}
.home-container{
background-image: url("https://wineandblooms.com/wp-content/uploads/2019/12/WB-Create-Your-New-Year-Plant-Journal-houseplant-leaf-header.png");
background-repeat: no-repeat;
background-size: cover;
}
.img{
width: 400px;
height: 350px;
border-radius: 25px;
}
.container{
max-width: 400px;
margin: auto;
}
.box{
background-color: rgb(255, 255, 255);
margin: 25px;
padding: 25px;
border-radius: 25px;
box-shadow: 0 0 5px rgb(0, 0, 0, 0.3);
}
.box:hover{
outline: 1px solid green;
}
a{
text-decoration: none;
}
.btn{
background-color: rgb(139, 72, 193);
padding: 10px;
border-radius: 10px;
}