-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
165 lines (137 loc) · 3.74 KB
/
Copy pathindex.html
File metadata and controls
165 lines (137 loc) · 3.74 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
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="The site-portfolio of my Angular projects"/>
<link rel="icon" type="image/x-icon" href="img/renjeka.ico">
<title>Angular projects</title>
<style>
@font-face {
font-family: BaronNeue;
src: url("fonts/Baron_Neue.woff") format("woff"),
url("fonts/Baron_Neue.otf") format("otf");
font-weight: normal;
}
@font-face {
font-family: BaronNeue;
src: url("fonts/Baron_Neue_Bold.otf") format("otf");
font-weight: bold;
}
html,
body {
margin: 0;
padding: 0;
height: 100%;
}
*{
font-family: BaronNeue;
font-weight: normal;
}
h1,
h2,
h3,
h4,
h5{
text-align: center;
}
.container {
width: 100%;
min-height: 100vh;
display: flex;
flex-flow: column;
margin: 0 auto;
background: #f0efeb url("img/bg-texture-1.png");
}
.section {
display: flex;
box-sizing: border-box;
flex-flow: column nowrap;
justify-content: flex-start;
align-items: center;
width: 100%;
min-height: 100vh;
padding: 100px 50px 20px;
background-color: rgba(140, 140, 105, 0.25);
}
img {
width: 100px;
transition: 1s;
}
img:hover {
filter: drop-shadow(0 0 4px black);
}
h1 {
margin-top: 40px;
color: #DD0031;
font-size: 30px;
/*text-transform: uppercase;*/
}
hr{
width: 100px;
height: 4px;
border: none;
border-radius: 15px;
background-color: #988345;
}
a {
padding: 1px 5px;
border-radius: 8px;
font-size: 23px;
text-decoration: none;
color: #29b3f5d4;
transition: .2s;
text-transform: uppercase;
}
a:hover {
text-shadow: 0 3px 3px gainsboro;
color: #26d6f1;
}
a:active {
color: #29b3f5d4;
text-shadow: 0 0 5px #ccc;
}
span{
margin-top: auto;
padding-top: 100px;
font-size: 12px;
}
/*.footer{*/
/*}*/
/*.footer__body{*/
/* max-width: 1000px;*/
/* text-align: center;*/
/*}*/
@media screen and (max-width: 700px) {
.section{
padding: 50px 50px 20px;
}
h1{
font-size: 22px;
}
a{
font-size: 18px;
}
}
</style>
</head>
<body>
<div class="container">
<section class="section">
<img src="img/angular.svg" alt="Angular logo">
<h1>My angular projects</h1>
<hr>
<!--for renjeka.site-->
<h3><a href="first-app/index.html">First-app</a></h3>
<!--for GitHub-->
<!-- <h3><a href="first-app/dist/first-app/index.html">First-app</a></h3>-->
<span>© Renjeka. All rights reserved</span>
</section>
<!-- <footer class="footer">-->
<!-- <div class="footer__body">-->
<!-- <span>© Renjeka. All rights reserved</span>-->
<!-- </div>-->
<!-- </footer>-->
</div>
</body>
</html>