forked from jwalapc/medico
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
55 lines (51 loc) · 1.03 KB
/
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
/* body{
background-color: #333;
font-family: cursive;
}
#our{
text-align: center;
font-size: 40px;
}
#info{
display: grid;
grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
grid-column-gap: 10px;
grid-row-gap: 10px;
} */
body{
background-color: skyblue;
font-family: cursive;
}
#our{
text-align: center;
font-size: 40px;
}
#info{
display: grid;
grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
grid-column-gap: 10px;
grid-row-gap: 10px;
}
#info img{
width: 100%;
}
#info img:hover{
border-top-left-radius: 50px;
}
.img{
box-sizing: border-box;
box-shadow: 12px 10px 12px rgba(0, 0, 0, 0.6);
}
.img:hover{
box-shadow: 0 0 5px #ffee10;;
background-color: #fff;
border-bottom-right-radius: 50px;
border-top-left-radius: 50px;
}
button{
padding: 10px;
background: rgba(0, 0, 0, 0.5);
color: yellow;
border: none;
box-shadow: 12px 10px 12px rgba(0, 0, 0, 0.6);
}