-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
45 lines (45 loc) · 806 Bytes
/
styles.css
File metadata and controls
45 lines (45 loc) · 806 Bytes
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
:root{
box-sizing: border-box;
background: #048BA8;
font-family: 'helvetica neue';
font-size: 20px;
font-weight: 200;
}
.site-wrap {
max-width: 80vw;
margin:2vh auto;
background: white;
padding: 40px;
padding-top: 10px;
text-align: left;
}
.list-container{
display: flex;
flex-direction: column;
flex: 1;
align-items: center;
justify-content: center;
}
a:hover, a:visited, a:link, a:active
{
text-decoration: none;
color: #1F487E;
}
.flex-item{
border: 2px solid #78D5D7;
width: 60vw;
height: auto;
text-align: center;
margin: 20px 20px;
padding: 20px;
}
.slide-in {
opacity: 0;
transition: all 0.7s;
transition-timing-function: ease-out;
transform: translateX(-70%) scale(0.95);
}
.active {
opacity: 1;
transform: translateX(0%) scale(1);
}