source: gs3-extensions/tabletop-dl/trunk/tabletop-winbox.css@ 37461

Last change on this file since 37461 was 37461, checked in by davidb, 14 months ago

A static pages that starts to build up the general structure of a tabletop Greenstone DL. No functionality in page at this stage

File size: 2.2 KB
Line 
1*{
2 box-sizing: border-box;
3 touch-action: manipulation;
4}
5html, body{
6 margin: 0;
7 padding: 0;
8 border: 0;
9 /*background: linear-gradient(135deg, #0d1117, #131820); */
10}
11body{
12 position: fixed;
13 top: 0;
14 right: 0;
15 bottom: 0;
16 left: 0;
17 font-family: -apple-system, BlinkMacSystemFont, Helvetica, Arial, "Open Sans", OpenSans, Roboto, Segoe UI, sans-serif;
18 text-align: center;
19 color: #fff;
20
21 -webkit-tap-highlight-color: transparent;
22 -webkit-text-size-adjust: 100%;
23 -webkit-touch-callout: none;
24 -webkit-user-select: none;
25 -khtml-user-select: none;
26 -moz-user-select: none;
27 -ms-user-select: none;
28 user-select: none;
29
30 overflow: hidden;
31}
32main{
33 position: fixed;
34 top: 0;
35 right: 0;
36 bottom: 0;
37 left: 0;
38 overflow-x: hidden;
39 overflow-y: scroll;
40 -webkit-overflow-scrolling: touch;
41 overflow-scrolling: touch;
42 /*content-visibility: auto;*/
43}
44header{
45 position: sticky;
46 top: 0;
47 width: 100%;
48 height: 50px;
49 /* background: linear-gradient(to right, rgba(13, 17, 22, 0.94), rgba(17, 21, 28, 0.94)); */
50 background: linear-gradient(to right, rgba(13, 17, 22, 0.64), rgba(17, 21, 28, 0.64));
51 padding: 15px 0;
52 border-bottom: 1px solid #181f2a;
53 z-index: 2;
54}
55.wrapper{
56 position: relative;
57 display: block;
58 /* margin: auto; */
59 /*max-width: 600px; */
60 text-align: left;
61 padding: 1.2em;
62 padding-top: 40px;
63 z-index: 1;
64}
65a{
66 display: inline-block;
67 color: #3374ff;
68 text-decoration: none;
69 font-weight: 600;
70}
71b{
72 display: block;
73 padding: 10px;
74}
75button{
76 padding: 5px 10px;
77 margin-bottom: 5px;
78}
79h1{
80 margin: 0;
81 padding: 0;
82}
83h1 img{
84 width: 100%;
85 height: auto;
86}
87h2{
88 font-size: 20px;
89 font-weight: 400;
90 line-height: 27px;
91}
92h3{
93 font-size: 24px;
94 font-weight: 600;
95 line-height: 32px;
96 margin:0;
97}
98hr{
99 border: 0;
100 border-bottom: 1px solid #1c2431;
101 margin-bottom: 20px;
102 padding-top: 20px;
103}
104.button {
105 display: inline-block;
106 background-color: #0050ff;
107 color: #fff;
108 width: auto;
109 border-radius: 10px;
110 padding: 15px 25px;
111 cursor: pointer;
112}
113
114
Note: See TracBrowser for help on using the repository browser.