-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
63 lines (55 loc) · 1.25 KB
/
styles.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
@import url('https://fonts.googleapis.com/css2?family=Irish+Grover&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Brygada+1918:ital,wght@1,700&family=Irish+Grover&family=Roboto+Slab:wght@800;900&display=swap');
body {
width: 100vw;
height: 100vh;
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
overflow: hidden;
}
image-viewer{
width: 400px;
height: 400px;
}
.text{
text-align: center;
color: #F13Ab1;
font-weight: bold;
}
.View{
border: 5px solid #FF912F;
height:350px;
width:350px;
}
.grid-container {
display: grid;
grid-template-columns: auto auto auto auto;
grid-gap: 10px;
padding: 10px;
}
.grid-container > div {
background-color: rgba(255, 255, 255, 0.8);
text-align: center;
padding: 20px 0;
font-size: 30px;
}
.imgg img{
height: 50px;
width: 150px;
cursor: pointer;
text-align: center;
}
.item1 {
grid-row: 1 / span 2;
}
h1{
text-align: center;
margin: 0px;
padding: 0px;
}
.center {
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
}