-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcss.css
118 lines (96 loc) · 1.82 KB
/
css.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
103
104
105
106
107
108
109
110
111
112
113
114
115
/* Environment */
body {
color : #ddd;
font-size : 3rem;
text-align : center;
background : url('./images/debut_dark.png');
}
/* Content */
.header {
margin-top : 8rem;
color : #fff;
font-size : 8rem;
text-align : center;
}
.subtitle {
font-family : 'Fjalla One', sans-serif;
font-size : 7rem;
}
.description {
text-align : center;
font-family : 'Droid Sans', sans-serif;
margin-top : 0rem;
margin-bottom : 18rem;
line-height : 1.5;
}
.ut {
font-family : 'Jura', sans-serif;
font-size : 10rem;
}
.et {
font-family : 'Gloria Hallelujah', cursive;
font-size : 10rem;
}
/* Footer */
footer {
max-width : 420px;
margin : auto;
}
.format-image {
max-width : 150px;
margin-left : 2.5%;
margin-right : 2.5%;
font-family : 'Droid Sans';
text-align : center;
border : solid;
border-color : rgba(191, 114, 126, 0.8);
}
.footer-image-ut {
float : left;
margin-left : 5%;
width : calc(50 - 5 - 2.5)%;
text-align : center;
}
.footer-image-et {
float : right;
width : calc(50 - 5 - 2.5)%;
margin-right : 5%;
text-align : center;
}
/* Beating animation */
@keyframes beat {
0%, 100% {
font-size : 1em;
color : #d14;
}
20% {
font-size : 1.2em;
color : #d25;
}
30% {
font-size : 1.15em;
color : #d36;
}
40% {
font-size : 1.2em;
color : #d25;
}
}
.heart {
color : #f25;
animation : beat 1s infinite;
}
.heart-container {
font-size : 0.8em;
display : inline-block;
width : 1.5em;
}
/* Media queries for small screens */
@media (max-width: 420px) {
.header {
margin-top: 2rem;
}
.description {
margin-bottom: 8rem;
}
}