ntt123 commited on
Commit
84c7a42
1 Parent(s): d840fdc

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +73 -19
style.css CHANGED
@@ -1,28 +1,82 @@
1
- body {
2
- padding: 2rem;
3
- font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
4
  }
5
 
6
- h1 {
7
- font-size: 16px;
8
- margin-top: 0;
 
9
  }
10
 
11
- p {
12
- color: rgb(107, 114, 128);
13
- font-size: 15px;
14
- margin-bottom: 10px;
15
- margin-top: 5px;
 
 
16
  }
17
 
18
- .card {
19
- max-width: 620px;
20
- margin: 0 auto;
21
- padding: 16px;
22
- border: 1px solid lightgray;
23
- border-radius: 16px;
 
 
24
  }
25
 
26
- .card p:last-child {
27
- margin-bottom: 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
28
  }
 
1
+ * {
2
+ box-sizing: border-box;
 
3
  }
4
 
5
+ html, body {
6
+ margin: 0 !important;
7
+ padding: 0 !important;
8
+ overflow: hidden;
9
  }
10
 
11
+ #hw-canvas {
12
+ position:fixed;
13
+ left:0;
14
+ top:0;
15
+ width:100%;
16
+ height:100%;
17
+ z-index: -1;
18
  }
19
 
20
+ #user-input {
21
+ padding: 5px;
22
+ margin: 20px 20px 20px 20px;
23
+ height: 50px;
24
+ font-size: 25px;
25
+ line-height: 40px;
26
+ border: gray solid 0.2ch;
27
+ width: calc(100% - 40px);
28
  }
29
 
30
+ #bias {
31
+ margin-left: 20px;
32
+ display: inline;
33
+ }
34
+ #writers {
35
+ display: inline;
36
+ margin-left: 20px;
37
+ height: 40px;
38
+ border: #008CBA solid 0.3ch;
39
+ margin-bottom: 20px;
40
+ }
41
+ /* #btn {
42
+
43
+ height: 50px;
44
+ border: gray solid 0.1ch;
45
+ background-color: red;
46
+ } */
47
+
48
+ .button {
49
+ margin-left: 20px;
50
+ border: none;
51
+ color: white;
52
+ padding: 16px 32px;
53
+ text-align: center;
54
+ text-decoration: none;
55
+ display: inline;
56
+ font-size: 16px;
57
+ margin: 4px 2px;
58
+ transition-duration: 0.4s;
59
+ cursor: pointer;
60
+ }
61
+
62
+ .button1 {
63
+ background-color: white;
64
+ color: black;
65
+ border: 2px solid #4CAF50;
66
+ }
67
+
68
+ .button1:hover {
69
+ background-color: #4CAF50;
70
+ color: white;
71
+ }
72
+
73
+ .button2 {
74
+ background-color: white;
75
+ color: black;
76
+ border: 2px solid #008CBA;
77
+ }
78
+
79
+ .button2:hover {
80
+ background-color: #008CBA;
81
+ color: white;
82
  }