forked from Ishaan28malik/Hacktoberfest-2024
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.css
63 lines (52 loc) · 735 Bytes
/
project.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
57
58
59
60
61
62
63
* {
margin: 0px;
padding: 0px;
}
html {
background-color: currentColor;
}
body {
font-family: arial;
color: aliceblue;
}
.main {
margin: 2%;
}
.card {
width: 20%;
display: inline-block;
box-shadow: 2px 2px 20px #fff;
border-radius: 5px;
margin: 2%;
}
.title {
text-align: center;
padding: 10px;
}
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: #fff;
border: 1px solid #000;
border-radius: 5px;
padding:10px;
}
button:hover {
background-color: #ff2;
color: #000;
transition: .5s;
cursor: pointer;
}
.more {
display: none;
}