-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
46 lines (42 loc) · 842 Bytes
/
style.css
File metadata and controls
46 lines (42 loc) · 842 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
gap: 50px;
background: url("nature_picture.png");
background-repeat: no-repeat;
background-size: cover;
}
#main-container{
height:400px;
width: 250px;
/* border: 2px solid black; */
display: flex;
justify-content: center;
align-items: center;
border-radius: 20px;
font-size: 30px;
background-color: #fff;
}
.small-btn{
cursor: pointer;
border: transparent;
width: 120px;
height: 50px;
margin: 40px;
font-size: 30px;
border: 2px solid black;
border-radius: 15px;
transition: transform 0.3s;
border: none;
}
.small-btn:hover{
transform: scale(1.1);
background-color: grey;
}