Changes for page Collaborate on reproducible science, anywhere
Last modified by bougault on 2023/01/26 14:38
Summary
-
Page properties (2 modified, 0 added, 0 removed)
-
Objects (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Default language
-
... ... @@ -1,1 +1,0 @@ 1 -en - Content
-
... ... @@ -1,15 +1,14 @@ 1 -{{velocity output="false"}}1 +{{velocity}} 2 2 #set($displayContentFooter=false) 3 3 #set($displayDocExtra=false) 4 +#set($displayContentMenu=false) 4 4 {{/velocity}} 5 5 6 -{{velocity}} 7 - 8 8 {{html clean="false"}} 9 9 <div class="container"> 10 10 <div class="row"> 11 11 <div class="col-md-7 col-md-push-5"> 12 - <img class="img-responsive" src="/bin/skin/Collaboratory/UX/HbpSkin/ WebHome/wiki_home_graphic.svg" />11 + <img class="img-responsive" src="/bin/skin/Collaboratory/UX/HbpSkin/wiki_home_graphic.svg" /> 13 13 </div> 14 14 <div class="col-md-5 col-md-pull-7 hero-text"> 15 15 <h3>Collaborate.<br/>Create reproducible science.<br/>Discover EBRAINS services at work.<br/>From anywhere.</h3> ... ... @@ -17,7 +17,6 @@ 17 17 </div> 18 18 </div> 19 19 </div> 20 - #if ($xcontext.user != 'XWiki.XWikiGuest') 21 21 <div class="container-fluid search__row"> 22 22 <div class="container"> 23 23 <div class="col-sm-12 col-md-6 col-md-offset-3"> ... ... @@ -33,13 +33,19 @@ 33 33 </div> 34 34 </form> 35 35 </div> 34 + <!--div class="col-md-6 col-md-offset-3"> 35 + 36 + <div> 37 + <input type="text" class="form-control" name="text" placeholder="Search word in all wiki pages"> 38 + <i class="glyphicon glyphicon-search"></i> 39 + </div> 40 + <button class="btn clb-btn-default" type="submit">Search</button> 41 + </form> 42 + </div --> 36 36 </div> 37 37 </div> 38 - #endif 39 39 {{/html}} 40 40 41 -{{/velocity}} 42 - 43 43 (% class="container highlighted"%)((( 44 44 45 45 (% class="highlighted__title" %)
- XWiki.StyleSheetExtension[0]
-
- Code
-
... ... @@ -20,9 +20,42 @@ 20 20 min-height:300px; 21 21 .search__row input[type="search"] { 22 22 font-size: 16px; 23 - height: 54px; 24 24 } 25 25 } 25 + 26 +.clb-box{ 27 + background-color:#fff; 28 + box-shadow:0 1px 2px 0 rgba(0,0,0,.1); 29 + padding:2rem; 30 + padding-bottom:5rem; 31 + color: @color-brand-primary; 32 + display:block 33 + .clb-box-title { 34 + color:#45b07c; 35 + font-weight:600; 36 + margin-bottom:5rem; 37 + } 38 +} 39 + 40 +.clb-btn-default,button { 41 + background-image:none; 42 + box-shadow:none; 43 + border:0; 44 + border-radius: @border-radius-default; 45 + padding-top:.5rem; 46 + padding-bottom:.5rem; 47 + padding-left:1rem; 48 + padding-right:1rem; 49 + background-color:@color-brand-primary; 50 + color: @color-white; 51 + &:hover { 52 + background-color: darken(@color-brand-primary, 10%); 53 + } 54 + &:active { 55 + background-color: darken(@color-brand-primary, 15%); 56 + } 57 +} 58 + 26 26 #xwikicontent .get-started__row__title { 27 27 margin: 1rem 0; 28 28 font-weight: 400; ... ... @@ -116,3 +116,44 @@ 116 116 border-top: 1px solid #ccc; 117 117 /*border-bottom: 1px solid #ccc;*/ 118 118 } 152 + 153 +.tags__title, .tags__text { 154 + text-align: center; 155 +} 156 + 157 +.tags__title--collaborate, 158 +.tags__title--science, 159 +.tags__title--reproducible, 160 +.tags__title--anywhere { 161 + padding-top: 4rem; 162 + position: relative; 163 +} 164 + 165 +.tags__title--collaborate::before, 166 +.tags__title--science::before, 167 +.tags__title--reproducible::before, 168 +.tags__title--anywhere::before { 169 + position: absolute; 170 + width: 50px; 171 + height: 50px; 172 + background-repeat: none; 173 + top: 0; 174 + margin-left: 50%; 175 + left: -25px; 176 + content: " "; 177 + display: table; 178 +} 179 + 180 +.tags__title--collaborate::before { 181 + background-image: url("/bin/skin/Collaboratory/UX/HbpSkin/Collaborate.svg"); 182 +} 183 +.tags__title--science::before { 184 + background-image: url("/bin/skin/Collaboratory/UX/HbpSkin/Science.svg"); 185 +} 186 +.tags__title--reproducible::before { 187 + background-image: url("/bin/skin/Collaboratory/UX/HbpSkin/Reproducible.svg"); 188 +} 189 +.tags__title--anywhere::before { 190 + background-image: url("/bin/skin/Collaboratory/UX/HbpSkin/Anywhere.svg"); 191 +} 192 +