forked from palacmlodziezy/strona_gr_IV
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstrona_glowna.html
120 lines (109 loc) · 2.43 KB
/
strona_glowna.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
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
<!DOCTYPE html>
<html>
<head>
<title>Pracownia informatyczna "Młodzi Programiści" - strona główna</title>
<style>
body {
padding; 0;
margin: 0;
overflow: hidden;
background-image: linear-gradient(to right, #c88301, #9e9a1a, #73aa4a, #44b47c, #05b9a9););
}
.site-nav {
display: flex;
justify-content: flex-end;
align-items: center;
padding: 10px;
box-sizing: border-box;
height: 20px;
width: 100%;
}
.side-menu-trigger {
border: 0;
border-radius: 5px;
background: #ffffff;
}
.side-menu {
display: flex;
box-sizing: border-box;
position: absolute;
height: 100%;
width: 300px;
top: 20px;
right: -300px;
padding: 0;
background: #34b399;
transition: 0.3s transform ease-in-out;
}
.side-menu ul {
position: absolute;
display: flex;
height: calc(100% - 20px);
flex-wrap: wrap;
margin: 0 10px;
padding: 0;
list-style-type: none;
align-content: flex-start
}
.side-menu ul li {
display: flex;
height: 30px;
background: #ffffff;
flex-basis: 100%;
margin-top: 20px;
color: #696e9e;
border-radius: 5px;
overflow: hidden;
}
.side-menu ul li a {
display: flex;
padding: 10px;
align-items: center;
width: 100%;
height: 100%;
background: #ffffff;
text-decoration: none;
box-sizing: border-box;
}
.side-menu-trigger:focus ~ .side-menu, .side-menu:hover {
transform: translateX(-300px);
}
</style>
</head>
<body>
<nav class="site-nav">
<button class="side-menu-trigger">Menu</button>
<aside class="side-menu">
<ul>
<li>
<a href="strona.html">
Konkursy informatyczne
</a>
</li>
<li>
<a href="index.html">
Języki programowania
</a>
</li>
<li>
<a href="informacje.html">
Informacje o naszej pracowni
</a>
</li>
<li>
<a href="Fajnegierki.html">
Najpopularniejsze gry komputerowe
</a>
</li>
</ul>
</aside>
</nav>
<img src="program.png" />
<h1>Pracownia informatyczna "Młodzi Programiści"</h1>
<h2>Cześć!</h2>
<p>Witajcie na stronie głównej pracowni "Młodzi Programiści"<br>
W menu (jakby ktoś nie wiedział to ten przecisk po prawej)Znajdziesz wiele ciekawych artykułów. Kliknij i sprawdź!<br><br><br>
Wpis by alvay-xd
</p>
</body>
</html>