-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle2.css
More file actions
85 lines (65 loc) · 1.37 KB
/
style2.css
File metadata and controls
85 lines (65 loc) · 1.37 KB
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
@import url('https://fonts.googleapis.com/css2?family=Cedarville+Cursive&display=swap');
*{
padding: 0;
margin: 0;
}
.container{
display: flex;
}
body{
background: rgb(32,28,98);
background: linear-gradient(90deg, rgba(32,28,98,1) 0%, rgba(9,121,101,1) 42%, rgba(0,212,255,1) 100%);
overflow: hidden;
}
.container .left{
flex:1;
display: flex;
justify-content: center;
align-items: center;
padding: 0px 30px;
gap: 30px;
}
.container .right{
flex: 1;
right: 0;
}
.grid{
display: grid;
grid-template-columns: repeat(3,200px);
grid-template-rows: repeat(2,250px);
overflow: hidden;
column-gap: 30px;
row-gap: 30px;
padding: 30px 50px;
/* padding-top: 30px; */
}
.grid a img{
height: 100%;
width: 100%;
object-fit: fill;
border-radius: 10px;
cursor: pointer;
}
.grid a img:hover{
box-shadow: 0px 0px 25px black;
scale: 1.05;
transition: 0.25s ease-in;
}
.left{
display: flex;
padding: 0px 50px;
flex-direction: column;
}
.left h1 {
font-size: 65px;
color: white;
font-family: Cedarville Cursive;
text-align: center;
}
.left p{
font-size: larger;
font-family: cursive;
color: white;
/* width: 100%; */
text-align: center;
}