forked from codebase-berkeley/mentored-rampup-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
51 lines (45 loc) · 994 Bytes
/
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
@font-face {
font-family: SFPro;
src: url(SFPRODISPLAYMEDIUM.OTF);
}
body {
font-family: SFPro;
color: #F1F1F1;
background: hsla(352, 96%, 56%, 1);
background: linear-gradient(360deg, hsla(352, 96%, 56%, 1) 0%, hsla(236, 100%, 72%, 1) 100%);
filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#FA233E", endColorstr="#6E78FF", GradientType=1 );
display: flex;
flex-direction: column;
height: 100vh;
width: 100vw;
overflow: clip;
text-align: center;
}
.header {
display: flex;
justify-content: center;
align-items: center;
}
.content {
display: flex;
flex-direction: row;
justify-content: space-evenly;
flex: 4 1 auto;
overflow: hidden;
}
.units {
width: 33vw;
height: 89vh;
text-align: center;
overflow-y: scroll;
}
.units::-webkit-scrollbar {
display: none; /* Safari and Chrome */
}
.portrait {
width: 33vw;
height: 33vw;
}
.title {
text-align: left;
}