-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.css
102 lines (86 loc) · 1.77 KB
/
main.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
97
98
99
100
101
102
@import "/stylesheets/index.css";
@import "/stylesheets/doc-colors.css";
.hero__text {
margin: 1rem 48px;
padding: 0px 12px 0px 30px;
width: 50%;
height: 100%;
display: flex;
flex-direction: column;
justify-self: center;
}
.hero__img {
width: 36.75rem;
height: 36.75rem;
min-width: 20.475rem;
border-radius: 144px;
}
.desc--hero {
padding-right: 30px;
font-size: 24px;
object-fit: cover;
}
.hero__img img {
width: 100%;
min-height: 588px;
border-radius: inherit;
transition: border-radius cubic-bezier(0.4, 0, 0.2, 1) 250ms;
}
.hero__img img:hover{
border-radius: 64px;
transition: border-radius cubic-bezier(0.4, 0, 0.2, 1) 250ms;
}
.iris__bg__wrapper--hero {
display: flex;
margin-bottom: 40px;
align-items: center;
justify-content: center;
}
.iris__bg__wrapper {
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: center;
margin: 2.5rem;
padding: 2.5rem;
border-radius: 64px;
min-height: 360px;
}
.landing__container {
width: 40%;
}
.tiles {
display: grid;
width: 100%;
grid-gap: 24px;
grid-auto-flow: row;
grid-template-columns: repeat(2, minmax(0%, 50%));
list-style: none;
}
.tile {
display: flex;
flex-flow: column nowrap;
width: 100%;
max-height: 424px;
overflow: hidden;
}
.tile__cover--parent img {
width: 100%;
height: 292px;
border-radius: 64px;
transition: border-radius cubic-bezier(0.4, 0, 0.2, 1) 250ms;
}
.tile__cover--parent img:hover {
border-radius: 24px;
transition: border-radius cubic-bezier(0.4, 0, 0.2, 1) 250ms;
}
.copy {
padding: 1rem;
}
.tile__header {
margin: 0px 0px 8px 0px;
font-size: 2rem;
}
.easter-egg{
color: white;
}