Reggie commited on
Commit
488bb7c
1 Parent(s): 0768472

Update static/style.css

Browse files
Files changed (1) hide show
  1. static/style.css +27 -69
static/style.css CHANGED
@@ -1,79 +1,37 @@
1
- body {
2
- --text: hsl(0 0% 15%);
3
- padding: 2.5rem;
4
- font-family: sans-serif;
5
- color: var(--text);
6
- }
7
- body.dark-theme {
8
- --text: hsl(0 0% 90%);
9
- background-color: hsl(223 39% 7%);
10
- }
11
-
12
- main {
13
- max-width: 80rem;
14
- text-align: center;
15
- }
16
-
17
- section {
18
- display: flex;
19
- flex-direction: column;
20
- align-items: center;
21
- }
22
-
23
- a {
24
- color: var(--text);
25
- }
26
-
27
- select, input, button, .text-gen-output {
28
- padding: 0.5rem 1rem;
29
- }
30
-
31
- select, img, input {
32
- margin: 0.5rem auto 1rem;
33
- }
34
-
35
- form {
36
- width: 25rem;
37
  margin: 0 auto;
 
38
  }
39
 
40
- input {
41
- width: 70%;
42
  }
43
 
44
  button {
45
- cursor: pointer;
46
- }
47
-
48
- .text-gen-output {
49
- min-height: 1.2rem;
50
- margin: 1rem;
51
- border: 0.5px solid grey;
52
- }
53
-
54
- #dataset button {
55
- width: 6rem;
56
- margin: 0.5rem;
57
- }
58
-
59
- #dataset button.hidden {
60
- visibility: hidden;
61
  }
62
 
63
- table {
64
- max-width: 40rem;
65
- text-align: left;
66
- border-collapse: collapse;
67
- }
68
-
69
- thead {
70
- font-weight: bold;
71
- }
72
-
73
- td {
74
- padding: 0.5rem;
75
  }
76
 
77
- td:not(thead td) {
78
- border: 0.5px solid grey;
79
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #container {
2
+ width: 600px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  margin: 0 auto;
4
+ text-align: center;
5
  }
6
 
7
+ #urlInput {
8
+ width: 500px;
9
  }
10
 
11
  button {
12
+ margin: 10px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  }
14
 
15
+ #login {
16
+ display: flex;
17
+ justify-content: center;
18
+ flex-direction: row;
 
 
 
 
 
 
 
 
19
  }
20
 
21
+ #loginButton {
22
+ display: flex;
23
+ background-color: rgb(255, 255, 255);
24
+ justify-content: center;
25
+ align-items: center;
26
+ width: fit-content;
27
+ padding: 10px 30px;
28
+ box-shadow: 1px 1px 1px 1px rgb(170, 170, 170);
29
+ border-radius: 15px;
30
+ border: 1px solid rgb(170, 170, 170);
31
+ }
32
+
33
+ #loginButtonText {
34
+ justify-content: center;
35
+ padding: 10px;
36
+ color: rgb(85, 85, 85);
37
+ }