-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbasicstyle.css
137 lines (122 loc) · 2.41 KB
/
basicstyle.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
*{
box-sizing: border-box;
background-color: var(--bgCol);
}
:root{
--bgCol: #f1f1f1; /* #f1f1f1 */
}
body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
padding-bottom: 70px;
}
.top-container {
background-color: var(--bgCol);
padding: 30px;
text-align: center;
}
/* .header {
padding: 10px 16px;
background: #555;
color: var(--bgCol);
text-align:center;
position:relative;
} */
header {
position: fixed;
top: 0;
left: 0;
width: 100%;
background-color: var(--bgCol);
color: #141414;
/* border: 1px solid rgb(15, 15, 15); */
padding: 10px;
z-index: 5;
text-align: center;
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}
.content {
padding: 16px ;
margin: 15px 15px 0px 15px;
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
border: 1px solid rgb(200,200,200);
Scroll-margin-top:35px;
}
h3:last-child {
margin-bottom:80px;
}
.dayheader {
text-align: center;
padding: 0px;
margin: 0px;
Scroll-margin-top:60px;
}
.header-child {
/* padding: 10px 16px; */
background: #555;
color: var(--bgCol);
position:relative;
margin:10px auto;
display:inline-block;
}
a.btn, input.button {
font-size: 20px !important;
padding-left: 20px !important;
padding-right: 20px !important;
}
.fixedbutton{
position: fixed;
bottom: 0;
right: 0;
background-color: #222122;
border: none;
color: white;
padding: 0;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 12px 12px;
cursor: pointer;
text-overflow: ellipsis;
border-radius: 32px;
width: 160px;
height: 40px;
}
.fixedheader{
position: fixed;
top: 0;
right: 0;
/* left: 0px; */
background-color: #4cacaf;
border: 1px solid black ;
color: rgb(15, 15, 15);
/* padding: 8px 16px; */
text-align: center;
text-decoration: none;
/* display: inline-block; */
font-size: 12px;
margin: 1px 1px;
z-index: 5;
}
.prettybutton {
background-color: #4CAF50;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
width: 50px;
}
.sticky {
position: fixed;
top: 0;
width: 100%;
}
.sticky + .content {
padding-top: 102px;
}