-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
116 lines (101 loc) · 2.14 KB
/
index.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
:root {
/* FONTS */
--scary-font: 'Metal Mania';
--typewriter-font: 'Inconsolata';
--funny-font: 'Balsamiq Sans';
--curly-font: 'Pacifico';
--old-font: 'Cinzel';
--simple-font: 'Noto Sans HK';
--funky-font: 'MuseoModerno';
--sweet-font: 'Lobster';
--professional-font: 'Old Standard TT';
--elegant-font: 'Sora';
--border-color: black;
--box-bg-color: white;
--text-color: black;
}
body {
box-sizing: border-box;
font-family: var(--elegant-font);
margin: 0;
color: var(--text-color);
height: 100vh;
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
}
.container {
width: 90%;
max-width: 600px;
height: 100vh;
margin: 0 auto;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
#loader {
display: none;
}
h3 {
margin: 1em;
}
#loader-img {
width: 30px;
display: block;
margin: 1.5em auto;
}
.avatar {
width: 100px;
border: 4px solid #f1faee;
margin: 20px auto 0;
border-radius: 50%;
display: block;
box-shadow: 0px 2px 6px rgb(0, 0, 0, 0.5);
}
h2, h3 {
margin: 0;
}
.quote {
margin: 1.5em 0;
font-size: 1.25em;
font-weight: bold;
text-transform: uppercase;
color: white;
line-height: 1.8em;
}
.quote-span {
padding: 3px;
background: rgba(22, 43, 72, 0.85);
}
.name-wrapper {
text-align: center;
margin: 20px auto;
}
.name-span {
color: white;
font-size: 15px;
font-weight: bold;
text-transform: uppercase;
line-height: 1.4em;
padding: 10px;
background: rgba(250, 0, 0, 0.75);
}
.title {
display: none;
background-color: var(--box-bg-color);
border: 3px solid var(--border-color);
text-transform: uppercase;
font-size: 20px;
padding: 10px 20px;
display: inline;
box-shadow: 3px 3px 10px rgb(0 0 0 / 0.5);
text-align: center;
}
.description {
text-transform: uppercase;
box-shadow: 3px 3px 10px rgb(0 0 0 / 0.2);
padding: 8px 16px;
background-color: var(--box-bg-color);
border: 3px solid var(--border-color);
}