-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.css
More file actions
54 lines (45 loc) · 702 Bytes
/
Copy pathapp.css
File metadata and controls
54 lines (45 loc) · 702 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
46
47
48
49
50
51
52
53
54
body {
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
}
#frame {
}
#notes {
display: flex;
flex-direction: column;
flex: 1;
align-items: center;
align-self: center;
justify-content: center;
width: 600px;
}
.mt1 {
margin-top: 1em;
}
.text {
letter-spacing: 1.2px;
font-family: 'Roboto Condensed', sans-serif;
display: flex;
flex-direction: column;
align-self: flex-start;
min-width: 300px;
}
.border {
border: 1px solid #444;
padding: 1em;
}
.text.justify {
text-align: justify;
}
.text.italic {
font-style: italic;
}
.text.center {
align-self: center;
}
.credit.right,
.text.right {
align-self: flex-end;
}