aditiaiblog commited on
Commit
59a3b52
·
verified ·
1 Parent(s): 49f96eb

Add main CSS styles for React build

Browse files
Files changed (1) hide show
  1. build/static/css/main.css +67 -0
build/static/css/main.css ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* Basic React app styles */
2
+ body {
3
+ margin: 0;
4
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
5
+ 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
6
+ sans-serif;
7
+ -webkit-font-smoothing: antialiased;
8
+ -moz-osx-font-smoothing: grayscale;
9
+ }
10
+
11
+ code {
12
+ font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
13
+ monospace;
14
+ }
15
+
16
+ .App {
17
+ text-align: center;
18
+ }
19
+
20
+ .App-logo {
21
+ height: 40vmin;
22
+ pointer-events: none;
23
+ }
24
+
25
+ @media (prefers-reduced-motion: no-preference) {
26
+ .App-logo {
27
+ animation: App-logo-spin infinite 20s linear;
28
+ }
29
+ }
30
+
31
+ .App-header {
32
+ background-color: #282c34;
33
+ padding: 20px;
34
+ color: white;
35
+ }
36
+
37
+ .App-link {
38
+ color: #61dafb;
39
+ }
40
+
41
+ @keyframes App-logo-spin {
42
+ from {
43
+ transform: rotate(0deg);
44
+ }
45
+ to {
46
+ transform: rotate(360deg);
47
+ }
48
+ }
49
+
50
+ /* Custom styles for proxy demo */
51
+ .proxy-info {
52
+ background: #f5f5f5;
53
+ padding: 20px;
54
+ border-radius: 8px;
55
+ margin: 20px auto;
56
+ max-width: 600px;
57
+ }
58
+
59
+ .endpoint-list {
60
+ text-align: left;
61
+ color: #555;
62
+ }
63
+
64
+ .endpoint-list li {
65
+ margin: 10px 0;
66
+ padding: 5px 0;
67
+ }