-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsplashscreen.html
59 lines (57 loc) · 1.23 KB
/
splashscreen.html
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
<link href="/assets/css/bootstrap.min.css" rel="stylesheet">
<style>
html, body {
background: #333333;
display: flex;
align-items: center;
justify-content: center;
margin: 0;
padding: 0;
}
#root {
position: relative;
background: #424242;
width: 1280px;
height: 720px;
}
#label {
position: absolute;
top: 25px;
left: 25px;
background: white;
color: #424242;
font-size: 72px;
font-weight: bold;
padding: 10px;
padding-left: 20px;
padding-right: 20px;
}
#title {
position: absolute;
top: 225px;
left: 25px;
color: white;
font-size: 72px;
font-weight: bold;
white-space: pre-line;
line-height: 70px;
padding: 10px;
}
#logo {
position: absolute;
bottom: 0px;
right: 0px;
margin-right: -65px;
height: 575px;
width: 575px;
}
</style>
<div id="root">
<div id="label">
ПЕТРОВИЧ 24
</div>
<div id="title">
Что такое интернет
</div>
<img id="logo" src="/assets/img/logo/origin.png">
</div>