-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles2.css
More file actions
72 lines (62 loc) · 1 KB
/
Copy pathstyles2.css
File metadata and controls
72 lines (62 loc) · 1 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
* {
margin: 0px;
padding: 0px;
background-color: gray
}
body {
font-family: arial;
text-align: center;
}
.main {
margin: 2%;
background-image: url("newone.jpeg");
}
.card {
width: 20%;
height: 20%;
display: inline-block;
box-shadow: 2px 2px 20px black;
border-radius: 5px;
margin: 2%;
margin-left: 50px;
}
.image img {
width: 100%;
height: 300px;
border-top-right-radius: 5px;
border-top-left-radius: 5px;
}
.title {
text-align: center;
padding: 10px;
background-color: sienna;
}
h1 {
font-size: 20px;
}
.des {
padding: 3px;
text-align: center;
padding-top: 10px;
border-bottom-right-radius: 5px;
border-bottom-left-radius: 5px;
}
button {
margin-top: 40px;
margin-bottom: 10px;
background-color: white;
border: 1px solid black;
border-radius: 5px;
padding: 10px;
}
button:hover {
background-color: black;
color: white;
transition: 0.5s;
cursor: pointer;
}
button{
background-color:red;
border-color: royalblue;
border-radius: 25%;
}