-
Notifications
You must be signed in to change notification settings - Fork 966
Expand file tree
/
Copy pathday70.css
More file actions
62 lines (53 loc) · 1.15 KB
/
day70.css
File metadata and controls
62 lines (53 loc) · 1.15 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
@import url(https://fonts.googleapis.com/css?family=Open+Sans:700,300);
.frame {
position: absolute;
top: 50%;
left: 50%;
width: 400px;
height: 400px;
margin-top: -200px;
margin-left: -200px;
border-radius: 2px;
box-shadow: 4px 8px 16px 0 rgba(0,0,0,0.1);
overflow: hidden;
background: #fff;
color: #333;
font-family: 'Open Sans', Helvetica, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.container {
width: 100%;
display: grid;
grid-template-columns: 1fr 1fr;
}
.grid-item {
height: 200px;
text-align: center;
background: #E27474;
color: white;
display: flex;
scale: 1;
flex-direction: column;
align-items: center;
justify-content: center;
transition: all 0.5s ease-in-out;
}
.grid-item:hover {
box-shadow: inset 0 0 2px 4px #000000;
}
.grid-item p {
font-size: 20px;
margin: 0; /* Remove default margin to avoid extra spacing */
}
.grid-item h1 {
font-size: 4em;
margin: 0; /* Remove default margin to avoid extra spacing */
}
.grid-item .konten {
line-height: 1;
transition: all 0.5s ease-in-out;
}
.grid-item:hover .konten {
transform: scale(0.9);
}