aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/css
diff options
context:
space:
mode:
authorjackyzha0 <[email protected]>2020-05-09 21:57:48 -0700
committerjackyzha0 <[email protected]>2020-05-09 21:57:48 -0700
commit47ff9a9cab7884024cf6595472a9fa0f04f30229 (patch)
tree472d138fde620e3b522ffccfd8b93f9f06d94ee4 /frontend/src/css
parentadd react setup (diff)
downloadctrl-v-47ff9a9cab7884024cf6595472a9fa0f04f30229.tar.xz
ctrl-v-47ff9a9cab7884024cf6595472a9fa0f04f30229.zip
add basic root page
Diffstat (limited to 'frontend/src/css')
-rw-r--r--frontend/src/css/index.css41
1 files changed, 33 insertions, 8 deletions
diff --git a/frontend/src/css/index.css b/frontend/src/css/index.css
index ec2585e..3ef5b53 100644
--- a/frontend/src/css/index.css
+++ b/frontend/src/css/index.css
@@ -1,13 +1,38 @@
body {
margin: 0;
- font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
- 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
- sans-serif;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
+ padding: 0;
+ background-color: #faf9f5;
+ font-family: 'Lora', serif;
}
-code {
- font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
- monospace;
+h1 {
+ font-size: 50px;
+ margin: 0 0;
}
+
+form {
+ width: 100%;
+}
+
+textarea {
+ width: 100%;
+ height: 60vh;
+ font-family: 'Roboto Mono', monospace;
+ font-size: 0.8em;
+ padding: 0.8em;
+ border-radius: 3px;
+ border: 1px solid #565656;
+ outline: none;
+}
+
+input[type=submit] {
+ font-family: 'Lora', serif;
+ font-weight: 700;
+ margin: 1.5em 0;
+ color: #faf9f5;
+ background-color: #111111;
+}
+
+input[type=submit]:focus {
+ outline: 0;
+} \ No newline at end of file