forked from khushi-purwar/WebDev-ProjectKart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdesign.css
46 lines (41 loc) · 785 Bytes
/
design.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
.c1
{
text-align: center;
}
.flex
{
display: flex;
background-color: black;
align-items: center;
justify-content: center;
}
.flex > div{
background-color: rgb(29, 230, 29);
margin: 10px;
padding: 3px;
font-size: 25px;
}
body
{
color: rgb(29, 230, 29);
background-color: black
}
.button {
display: inline-block;
padding: 15px 25px;
cursor: pointer;
text-align: center;
text-decoration: none;
outline: none;
color: #fff;
background-color: rgb(29, 230, 29);
border: none;
border-radius: 15px;
font-size: 15px;
}
.button:hover {background-color: rgb(14, 97, 14)}
.button:active {
background-color: #3e8e41;
box-shadow: 0 5px #666;
transform: translateY(4px);
}