forked from Jatinkaushikcse/CricInfo-clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
96 lines (71 loc) · 1.47 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
/* *{
color: white;
} */
#container{
background-color:white;
box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.13) 0px 0px 1px 1px;
width: 100%;
height: 80px;
margin: auto;
margin-top: 50px;
box-sizing: border-box;
}
#container>div{
/* border: 1px solid black; */
height: 80%;
width: 60%;
margin: auto;
}
.innerbox{
display: flex;
justify-content: space-between;
margin: auto;
}
.innerbox>div {
margin: auto;
}
#main{
width: 60%;
display: grid;
grid-template-columns: repeat(1,1fr) ;
grid-template-rows: auto;
gap: 10px;
/* border: 1px solid red; */
border-radius: 20px;
margin-top: 50px;
box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
margin-left: 100px;
}
#main>div{
box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
display: flex;
box-sizing: border-box;
padding: 20px;
margin: auto;
/* border-radius: 10px; */
}
#main>div>div{
/* color: blue; */
padding: 10px;
overflow: hidden;
border-radius: 10px;
}
h1{
margin-left: 130px;
font-size: 50px;
}
img{
width: 100%;
border-radius: 10px;
}
img:hover{
transform: scale(1.5);
}
.A{
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
font-size: 20px;
}
h4{
cursor: pointer;
color: rgb(21, 21, 209);
}