-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
78 lines (65 loc) · 1.5 KB
/
index.html
File metadata and controls
78 lines (65 loc) · 1.5 KB
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
<html>
<body>
<!-- display -->
<div class="display">
<!-- contenuto -->
<div id="contenuto">
</div>
<!-- nav bar -->
<div id="navbar">
<div class="bar">
<div class="applicazione">
Vikunja
</div>
<div class="informazioni">
</div>
</div>
</div>
</div>
</body>
</html>
<style>
@page {
size: 801px 481px;
margin: 0;
}
.informazioni {
}
.applicazione {
margin-left: 15px;
line-height: 40px;
}
.bar {
height: 40px;
width: 760px;
border-radius: 50px;
/* background-color: rgb(166, 165, 165); */
display: flex;
justify-content: space-between;
background-image: url("file:///home/francesco/test/bg.bmp");
background-repeat: repeat;
background-size: 40px 40px;
}
.display {
width: 800px;
height: 480px;
background-color: rgb(255, 255, 255);
}
/* body {
display: flex;
background-color: rgb(206, 206, 203);
align-content: center;
align-items: center;
} */
#contenuto {
width: 800px;
height: 420px;
}
#navbar {
width: 800px;
height: 60px;
display: flex;
align-items: center;
justify-content: center;
}
</style>