mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-23 12:39:22 +00:00
27 lines
462 B
Smarty
27 lines
462 B
Smarty
|
<!--
|
||
|
Home landing page
|
||
|
|
||
|
@author Pierre HUBERT
|
||
|
-->
|
||
|
<div id="homeLandingScreen">
|
||
|
<div class="landingMessage">
|
||
|
<h1>ComunicWeb V2 Experimental preview</h1>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<!-- Page styles -->
|
||
|
<style type="text/css">
|
||
|
#homeLandingScreen{
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
position: fixed;
|
||
|
text-align: center;
|
||
|
padding: 60px;
|
||
|
background-position: 50% 50%;
|
||
|
}
|
||
|
|
||
|
#homeLandingScreen .landingMessage {
|
||
|
position: relative;
|
||
|
background-color: #fff6;
|
||
|
}
|
||
|
</style>
|