Browse Source

first commit

master
n0m1s 11 years ago
parent
commit
0ac38e9d8e
7 changed files with 190 additions and 0 deletions
  1. BIN
      favicon.ico
  2. BIN
      favicon.png
  3. BIN
      images/esir.png
  4. +66
    -0
      index.css
  5. +66
    -0
      index.css~
  6. +29
    -0
      index.php
  7. +29
    -0
      index.php~

BIN
favicon.ico View File

Before After

BIN
favicon.png View File

Before After
Width: 128  |  Height: 128  |  Size: 2.0 KiB

BIN
images/esir.png View File

Before After
Width: 257  |  Height: 98  |  Size: 20 KiB

+ 66
- 0
index.css View File

@ -0,0 +1,66 @@
body
{
padding:0px;
}
#title
{
position: fixed;
top: 0px;
left: 0px;
width: 100%;
height: 150px;
margin: 0px;
background-color: #2b2b2b;
z-index: 100;
}
nav
{
position: fixed;
top:0px;
left:0px;
width: 380px;
height: 100%;
padding: 10px;
padding-top: 150px;
background-color: #F1F1F1;
border-right: 2px solid #2b2b2b;
z-index: 50;
}
nav .onglet
{
position:relative;
left: -5px;
height: 50px;
width: 50%;
color: #ffffff;
background-color: #2b2b2b;
}
nav .onglet :hover
{
background-color: #414141;
}
#onglet-esir
{
float: left;
}
#onglet-ext
{
left: 0px;
float: right;
}
#hamburgerMenu
{
}
#calendar
{
}

+ 66
- 0
index.css~ View File

@ -0,0 +1,66 @@
body
{
padding:0px;
}
#title
{
position: fixed;
top: 0px;
left: 0px;
width: 100%;
height: 150px;
margin: 0px;
background-color: #2b2b2b;
z-index: 100;
}
nav
{
position: fixed;
top:0px;
left:0px;
width: 380px;
height: 100%;
padding: 10px;
padding-top: 150px;
background-color: #F1F1F1;
border-right: 2px solid black;
z-index: 50;
}
nav .onglet
{
position:relative;
left: -5px;
height: 50px;
width: 50%;
color: #ffffff;
background-color: #2b2b2b;
}
nav .onglet :hover
{
background-color: #414141;
}
#onglet-esir
{
float: left;
}
#onglet-ext
{
left: 0px;
float: right;
}
#hamburgerMenu
{
}
#calendar
{
}

+ 29
- 0
index.php View File

@ -0,0 +1,29 @@
<!DOCTYPE html>
<html>
<head>
<title>Kiwi Calendar</title>
<meta charset="utf-8" />
<link rel="stylesheet" href="./index.css" />
<link rel="icon" type="image/png" href="favicon.png" />
<!--[if IE]><link rel="shortcut icon" type="image/x-icon" href="favicon.ico" /><![endif]-->
</head>
<body>
<header id="title">
<img alt="logo ESIR" src="./images/esir.png" />
</header>
<nav id="hamburgerMenu">
<div class="onglet" id="onglet-esir">
Esir
</div>
<div class="onglet" id="onglet-ext">
Rennes
</div>
<div id="container">
<h2>Conférences, Évènements</h2>
<h2>Clubs, associations</h2>
</div>
</nav>
<div id="calendar">
</div>
</body>
</html>

+ 29
- 0
index.php~ View File

@ -0,0 +1,29 @@
<!DOCTYPE html>
<html>
<head>
<title>Kiwi Calendar</title>
<meta charset="utf-8" />
<link rel="stylesheet" href="./index.css" />
<link rel="icon" type="image/png" href="favicon.png" />
<!--[if IE]><link rel="shortcut icon" type="image/x-icon" href="favicon.ico" /><![endif]-->
</head>
<body>
<header id="title">
<img alt="logo ESIR" src="./images/esir.png" />
</header>
<nav id="hamburgerMenu">
<div class="onglet" id="onglet-esir">
Esir
</div>
<div class="onglet" id="onglet-ext">
Exterieur
</div>
<div id="container">
<h2>Conférences, Évènements</h2>
<h2>Clubs, associations</h2>
</div>
</nav>
<div id="calendar">
</div>
</body>
</html>

Loading…
Cancel
Save