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

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

Shifting work to using interact.js

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