aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/css/index.css
diff options
context:
space:
mode:
authorRyan Mehri <[email protected]>2020-05-09 23:07:01 -0600
committerGitHub <[email protected]>2020-05-09 23:07:01 -0600
commit716e0b2633f14e13930c688f49859018dd01c592 (patch)
treed00576287ced311b9eec10dd4bb5a516fbd91124 /frontend/src/css/index.css
parentMerge pull request #6 from jackyzha0/backend (diff)
parentchange from npm to yarn (diff)
downloadctrl-v-716e0b2633f14e13930c688f49859018dd01c592.tar.xz
ctrl-v-716e0b2633f14e13930c688f49859018dd01c592.zip
Merge pull request #7 from jackyzha0/react
add basic root page
Diffstat (limited to 'frontend/src/css/index.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