-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.css
88 lines (73 loc) · 1.22 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
body {
padding: 0;
margin: 0;
font-family: 'Playfair Display', serif;
}
h1 {
text-align: center;
font-size: 48pt;
font-style: italic;
font-weight: 100;
}
a {
text-decoration: none;
border-bottom: 1px dashed #000;
color: #4458ed
}
a:visited {
color: #4458ed
}
.text-box {
width: 50%;
margin: auto;
}
.ml-image {
width: 17%;
}
#app {
margin-top: 50px;
}
#asterisk {
vertical-align: super;
font-size: 36pt;
cursor: pointer;
}
#info-modal {
position: absolute;
z-index: 1;
width: 100%;
height: 100%;
background: #fff;
cursor: pointer;
}
.caption {
font-size: 36pt;
padding: 15px 30px;
text-align: center;
}
.images {
text-align: center;
}
.caption {
opacity: 0;
}
.hidden {
display: none;
}
.fade-text-in {
opacity: 1;
-webkit-transition: all 1s ease-in-out;
-moz-transition: all 1s ease-in-out;
-o-transition: all 1s ease-in-out;
transition: all 1s ease-in-out;
}
.fade-text-out {
opacity: 0;
-webkit-transition: all 0.5s ease-in-out;
-moz-transition: all 0.5s ease-in-out;
-o-transition: all 0.5s ease-in-out;
transition: all 0.5s ease-in-out;
}
[v-cloak] {
display: none;
}