-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
80 lines (68 loc) · 1.27 KB
/
styles.css
File metadata and controls
80 lines (68 loc) · 1.27 KB
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
@import url('https://fonts.googleapis.com/css2?family=Inter&family=Sawarabi+Gothic&display=swap');
body {
font-size: 1.1em;
font-family: 'Inter';
margin: 0;
}
.page {
padding-left: 2em;
padding-right: 1em;
&.home {
margin-bottom: 4em;
h3 {
margin-top: 2em;
margin-bottom: 1.5em;
}
}
}
.wrapper {
display: flex;
}
.main-application {
flex: 4
}
.data-watcher {
flex: 2;
height: 100vh;
textarea {
padding: 1em;
font-size: 1.2em;
width: 100%;
height: 100%;
}
}
input {
font-size: .9em;
border-radius: 4px;
padding: 8px;
margin:10px 5px;
border:0;
border-bottom:1px solid #00000070;
box-shadow:0 0 15px 4px rgba(0,0,0,0.06);
}
*, *:before, *:after {
box-sizing: border-box;
}
.helper {
/* text-align: center; */
font-size: .85em;
border-radius: 5px;
background-color: #0000ff20;
padding: .5em;
padding-left: 1em;
padding-right: 1em;
width: fit-content ;
max-width: 500px;
&.wide {
max-width: 900px
}
}
textarea.code-block {
margin-top: 1em;
margin-bottom: 1em;
color: black;
display: block;
font-size: 1em;
width: 100%;
height: 400px;
}