Browse Source

css

master
AmarOk1412 11 years ago
parent
commit
e604b07c6e
6 changed files with 82 additions and 84 deletions
  1. +2
    -1
      day.html
  2. +32
    -0
      event.css
  3. +2
    -1
      event.html
  4. +0
    -82
      index.css
  5. +1
    -0
      index.html
  6. +45
    -0
      main.css

+ 2
- 1
day.html View File

@ -3,7 +3,8 @@
<head>
<title>Kiwi Calendar</title>
<meta charset="utf-8" />
<link rel="stylesheet" href="./index.css" />
<link rel="stylesheet" href="./main.css" />
<link rel="stylesheet" href="./event.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>


+ 32
- 0
event.css View File

@ -0,0 +1,32 @@
body
{
padding:0px;
}
#descEvent
{
margin-top: 150px;
width:80%;
margin-right:auto;
margin-left:auto;
margin-bottom:70px;
}
#descEvent h1
{
text-align:center;
}
#descEvent #description
{
width:60%;
text-align:justify;
}
#descEvent #image
{
float:right;
width:20%;
margin-right:100px;
margin-bottom:-100px;
}

+ 2
- 1
event.html View File

@ -3,7 +3,8 @@
<head>
<title>Kiwi Calendar</title>
<meta charset="utf-8" />
<link rel="stylesheet" href="./index.css" />
<link rel="stylesheet" href="./main.css" />
<link rel="stylesheet" href="./event.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>


+ 0
- 82
index.css View File

@ -4,36 +4,6 @@ body
overflow:hidden;
}
#title
{
position: fixed;
top: 0px;
left: 0px;
width: 100%;
height: 70px;
margin: 0px;
background-color: #2b2b2b;
z-index: 100;
}
a
{
color:#5fd0f1;
text-decoration:none;
}
#title img
{
padding-top:10px;
height: 50px;
}
#title .rightLogo
{
float:right;
margin-right:25px;
}
nav
{
position: fixed;
@ -252,55 +222,3 @@ tr #date
margin-left:10px;
font-size:12px;
}
@media only screen and (max-width: 1000px) and (max-height: 500px){
#title
{
height: 50px;
}
#title img
{
padding-top:10px;
height: 30px;
}
}
/*PAGE EVENEMENT*/
#descEvent
{
margin-top: 150px;
width:80%;
margin-right:auto;
margin-left:auto;
margin-bottom:70px;
}
#descEvent h1
{
text-align:center;
}
#descEvent #description
{
width:60%;
text-align:justify;
}
#descEvent #image
{
float:right;
width:20%;
margin-right:100px;
margin-bottom:-100px;
}

+ 1
- 0
index.html View File

@ -4,6 +4,7 @@
<title>Kiwi Calendar</title>
<meta charset="utf-8" />
<link rel="stylesheet" href="./index.css" />
<link rel="stylesheet" href="./main.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>


+ 45
- 0
main.css View File

@ -0,0 +1,45 @@
#title
{
position: fixed;
top: 0px;
left: 0px;
width: 100%;
height: 70px;
margin: 0px;
background-color: #2b2b2b;
z-index: 100;
}
a
{
color:#5fd0f1;
text-decoration:none;
}
#title img
{
padding-top:10px;
height: 50px;
}
#title .rightLogo
{
float:right;
margin-right:25px;
}
@media only screen and (max-width: 1000px) and (max-height: 500px){
#title
{
height: 50px;
}
#title img
{
padding-top:10px;
height: 30px;
}
}

Loading…
Cancel
Save