blob: ca803b298398f190b7744575a0495a9b973e3917 (
plain)
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
|
@use "../node_modules/reset-css/reset.css";
:root {
--text-color: #000
}
body {
--background-image: ;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
font-size: 18px;
background: var(--background-image) center fixed no-repeat;
background-size: cover;
color: var(--text-color);
}
a {
color: var(--text-color);
}
.credits {
position: absolute;
bottom: 0;
display: flex;
gap: 1em;
font-size: 16px;
& a {
color: var(--text-color);
}
}
main {
width: 50%;
padding: 2rem;
border-radius: 32px;
box-shadow: 0 0 70px 2px rgba(0,0,0,0.75);
& h1, h2, h3 {
margin: 0;
}
}
h1, h2, h3 {
margin-bottom: 1rem;
margin-top: 2rem;
}
p {
margin-bottom: 0.5rem;
}
h1 {
font-size: 3rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
.presentation {
position: relative;
display: flex;
align-items: center;
gap: 2rem;
margin-bottom: 2rem;
color: var(--text-color);
&__information {
display: flex;
//width: 100%;
margin-right: 1rem;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 0.5rem;
& p {
margin: 0;
}
}
& figure {
display: inline;
& img {
height: 128px;
border-radius: 32px;
box-shadow: 0 0 50px -20px rgba(0,0,0,0.75);
}
}
& h2, p {
display: inline;
}
}
.links {
--text-color-hover: var(--text-color);
--background: #000;
--background-hover: var(--background);
display: flex;
margin-top: 2rem;
width: 100%;
gap: 1rem;
& .link {
display: flex;
align-items: center;
justify-content: center;
width: 33%;
border-radius: 16px;
background: var(--background);
&:hover {
background: var(--background-hover);
}
}
& a {
display: block;
color: var(--text-color);
text-decoration: none;
text-align: center;
padding: 1em;
width: 100%;
&:hover {
color: var(--text-color-hover);
}
}
}
.credits-legal {
width: 70%;
}
|