warmup hackit banner
This commit is contained in:
parent
41ea092d1d
commit
e1400bacdc
2 changed files with 35 additions and 2 deletions
|
@ -35,6 +35,9 @@
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body class="text-light container" role="document">
|
<body class="text-light container" role="document">
|
||||||
|
<a id='hackit_banner' href='https://www.hackmeeting.org/hackit20/'>
|
||||||
|
<span>warmup<br/> hackmeeting</span>
|
||||||
|
</a>
|
||||||
<!-- <div id='text_header'></div> -->
|
<!-- <div id='text_header'></div> -->
|
||||||
<div id='header'>
|
<div id='header'>
|
||||||
<h1>Hack<span style='color: red;'>Я</span>occhio</h1>
|
<h1>Hack<span style='color: red;'>Я</span>occhio</h1>
|
||||||
|
|
|
@ -25,12 +25,12 @@ h4 {
|
||||||
font-size: 1.2em;
|
font-size: 1.2em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.section a {
|
a {
|
||||||
color: orange;
|
color: orange;
|
||||||
transition: color .5s;
|
transition: color .5s;
|
||||||
}
|
}
|
||||||
|
|
||||||
.section a:hover {
|
a:hover {
|
||||||
color: orangered;
|
color: orangered;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
@ -140,3 +140,33 @@ img {
|
||||||
position: relative;
|
position: relative;
|
||||||
z-index: 0;
|
z-index: 0;
|
||||||
} */
|
} */
|
||||||
|
|
||||||
|
|
||||||
|
#hackit_banner {
|
||||||
|
position: fixed;
|
||||||
|
transform: rotate(45deg);
|
||||||
|
font-size: 18px;
|
||||||
|
font-weight: bold;
|
||||||
|
font-family: Helvetica, sans-serif;
|
||||||
|
color: black;
|
||||||
|
width: 200px;
|
||||||
|
line-height: 25px;
|
||||||
|
text-align: center;
|
||||||
|
overflow: hidden;
|
||||||
|
top: 25px;
|
||||||
|
box-shadow: 1px 1px 25px rgba(233, 6, 229, .8);
|
||||||
|
background-color: red;
|
||||||
|
right: -50px;
|
||||||
|
transition: background-color 1s;
|
||||||
|
}
|
||||||
|
@keyframes pulse {
|
||||||
|
0% { background-color: red; }
|
||||||
|
50% { background-color: white; }
|
||||||
|
100% { background-color: red; }
|
||||||
|
}
|
||||||
|
#hackit_banner:hover {
|
||||||
|
text-decoration: none;
|
||||||
|
animation-name: pulse;
|
||||||
|
animation-duration: 1s;
|
||||||
|
animation-iteration-count: infinite;
|
||||||
|
}
|
Loading…
Reference in a new issue