-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
51 lines (42 loc) · 900 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
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
.container{
color: white;
background-color: rgb(35,64,75);
padding-bottom:15px ;
padding-top:15px ;
}
.card{
border-radius: 10px !important;
background-image: linear-gradient(to right,rgb(221,202,163),rgb(67,85,90));
color: white;
}
.card h5{
background-color: black !important;
color: white;
display: block;
padding: 15px;
width: 100%;
}
.card img{
/* width: 300px; */
/* position: relative;
left: 60px; */
/* top: 15px; */
align-self: center;
justify-content: center;
/* text-align: center; */
}
.card button{
/* position: relative;
bottom: 30px;
width: 150px;
left: 135px; */
align-self: center;
background-image: linear-gradient(to right,rgb(221,202,163),rgb(67,85,90));
color: white;
border: solid 1px ;
}