-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
56 lines (48 loc) · 852 Bytes
/
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
* {
margin: 0px;
padding: 0px;
}
body {
background-color: darkgray;
}
section {
display: flex;
justify-content: center;
text-align: center;
margin: 30px;
}
nav {
width: 300px;
height: 550px;
margin: 30px;
background-color: #fff;
border: none;
border-radius: 10px;
}
nav:hover {
padding: 6px;
}
nav img {
width: 250px;
height: 150px;
margin: 10px;
border-radius: 10px;
}
nav p {
font-size: 17px;
}
nav button {
width: 200px;
height: 60px;
background-color: coral;
margin-top: 20px;
border-radius: 10px;
border: 1px solid coral;
font-size: 18px;
}
nav button:hover {
transition: 0.4s ease;
background-color: #000;
color: coral;
border: 1px solid #000;
}