-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathheader.php
More file actions
112 lines (95 loc) · 2.84 KB
/
header.php
File metadata and controls
112 lines (95 loc) · 2.84 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
<style>
header{
background-color: #1A1A1A;
height: 250px;
display: flex;
align-items: center;
justify-content: center;
}
header .logo{
width: 250px;
}
header .borde{
height: 100px;
border: 2px solid #22B573;
margin: 0 60px;
}
header h2{
color: #23b573;
font-size: 1.8rem;
margin-bottom: 0!important;
text-transform: uppercase;
font-family: 'Montserrat', sans-serif;
}
header .logo img{
width: 100%;
}
nav.menu{
width: 100%;
height: 50px;
float: left;
background-color: #FFF;
z-index: 9999;
}
nav.menu.fijar{
position: fixed;
top: 0!important;
box-shadow: 1px 1px 1px 1px lightgrey;
}
nav.menu > ul{
list-style: none;
display: flex;
justify-content: space-around;
}
nav.menu > ul > li{
float: left;
padding: 10px 20px;
}
nav.menu > ul > li > a{
color: #1A1A1A;
font-family: 'Montserrat', sans-serif;
font-size: 14px;
font-weight: 700;
}
</style>
<header>
<div class="menuMobile">
<a href="#" id="menuMobile"><i aria-hidden="true" class="fa fa-bars"></i></a>
</div>
<div class="menuMobileBox">
<div class="closeButton">
<a href="#" id="close">
<i aria-hidden="true" class="fa fa-times"></i>
</a>
</div>
<ul>
<li><a href="/wtpc">Home</a></li>
<li><a href="objetivos">Objetivos</a></li>
<li><a href="docentes">Docentes</a></li>
<li><a href="programa">Programa</a></li>
<li><a href="clases">Clases</a></li>
<li><a href="calendario">Calendario</a></li>
<li><a class="contactoAnchor" href="#">Contacto</a></li>
</ul>
</div>
<div class="logo">
<a href="#"><img src="img/logoBlanco.png" alt="WTPC - Workshop en técnicas de programación científica"></a>
</div>
<div class="borde"></div>
<?php if($_GET['k'] == "home"){ ?>
<img class="hideMobile" style="height: 85px;" src="img/bajadaLogo.png" alt="WTPC - Workshop en técnicas de programación científica" />
<?php }else{ ?>
<h2><?= $_GET['k']; ?></h2>
<?php } ?>
</header>
<nav class="menu">
<ul>
<li><a href="/wtpc">Home</a></li>
<li><a href="objetivos">Objetivos</a></li>
<li><a href="docentes">Docentes</a></li>
<li><a href="programa">Programa</a></li>
<li><a href="clases">Clases</a></li>
<li><a href="calendario">Calendario</a></li>
<li><a class="contactoAnchor" href="#">Contacto</a></li>
</ul>
</nav>