-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
179 lines (150 loc) · 2.73 KB
/
style.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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
@import url('https://fonts.googleapis.com/css2?family=Fuzzy+Bubbles&display=swap');
body {
color:#1a0909;
margin:0px;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
background-color: rgb(247, 246, 243);
}
.grid {
display:grid;
width:100%;
grid-template-columns: 50% 50%;
height: 100%;
}
.box, .log {
padding:20px 30px 20px 40px;
}
.box > img {
opacity: .5;
height: 50px;
display: inline-block;
}
a {
color: #1a0909;
}
li {
list-style: none;
}
ul {
padding:0px;
}
body.logged-out h2.sanity-title {
color: silver;
}
body.logged-in .sanity-no-go {
display:none;
}
body.logged-out .sanity-operations {
display:none;
}
.sanity-no-go {
border:4px dashed silver;
border-radius: 6px;
height: 300px;
display:grid;
}
.sanity-no-go > div {
align-self: center;
justify-self: center;
}
.sanity-operations input {
background-color: white;
border:1px solid #6B6B6B;
padding:4px;
border-radius: 1px;
width:200px;
}
button, .data-netlify a, #notes li {
background-color: white;
border:1px solid #6B6B6B;
padding:4px 6px;
border-radius: 3px;
text-decoration: none;
font-size:16px;
}
li > button {
border:0px;
margin-right:10px;
font-size:16px;
line-height:16px;
}
.data-netlify li {
display: inline-block;
margin-right:6px;
margin-top:6px;
}
p, div, span, a {
font-size:14px;
}
#notes li {
margin-bottom:4px;
}
.sanity-operations button:hover {
cursor:pointer;
background-color: rgb(240, 200, 200);
}
.netlify a:hover {
cursor: pointer;
background-color: rgb(170, 200, 215);
}
#animation {
position: absolute;
top: 0;
width: 100vw;
height: 100vh;
z-index:100000;
background-color: rgba(100,100,100,.74);
text-align:center;
}
#animation img {
width:10%;
margin: 0 auto;
position: relative;
top: 50%;
transform: translateY(-50%);
opacity: .5;
animation: 2s rocking infinite ease-in-out
}
@keyframes rocking {
0% {
transform: rotate(0deg)
}
25% {
transform: rotate(10deg)
}
75% {
transform: rotate(-10deg)
}
100% {
transform: rotate(0deg)
}
}
footer {
position: fixed;
bottom: 0;
text-align:center;
width: 100%;
padding:10px;
}
footer div {
display: inline-block;
padding:10px;
}
footer img {
width:22px;
}
.nota {
margin-top:60px;
font-size: 11px;
color:#1a0909;
width:330px;
}
.netlify-identity-signup:after {
content: "*";
width:20px;
height:20px;
}
.sanity-link img {
filter: grayscale(100%);
opacity: 0.8;
}