Author: jruchaud Date: 2015-04-15 10:10:33 +0000 (Wed, 15 Apr 2015) New Revision: 1184 Url: http://forge.nuiton.org/projects/sandbox/repository/revisions/1184 Log: Begin style Modified: wit/css/style.css wit/index.html Modified: wit/css/style.css =================================================================== --- wit/css/style.css 2015-04-15 10:06:45 UTC (rev 1183) +++ wit/css/style.css 2015-04-15 10:10:33 UTC (rev 1184) @@ -0,0 +1,29 @@ +* { + box-sizing: border-box; +} + +.selection { + background-color: #FFF; + border: 1px solid #AAA; + border-radius: 4px; + cursor: text; + min-height: 32px; +} + +.selection ul { + list-style: outside none none; + margin: 0px; + padding: 0px 5px; + width: 100%; +} + +.selection li { + background-color: #E4E4E4; + border: 1px solid #AAA; + border-radius: 4px; + cursor: default; + float: left; + margin-right: 5px; + margin-top: 5px; + padding: 0px 5px; +} Modified: wit/index.html =================================================================== --- wit/index.html 2015-04-15 10:06:45 UTC (rev 1183) +++ wit/index.html 2015-04-15 10:10:33 UTC (rev 1184) @@ -2,14 +2,16 @@ <html> <head> <title>WIT</title> - <link type="text/css" href="css/style.css"/> + <link type="text/css" href="css/style.css" rel="stylesheet"/> <script type="application/javascript" src="js/main.js"></script> </head> <body> - <div id="tags"> - <div>wit</div> - <div>js</div> - <div>dev</div> + <div class="selection"> + <ul> + <li>wit</li> + <li>js</li> + <li>dev</li> + </ul> </div> </body> </html>
participants (1)
-
jruchaud@users.nuiton.org