๐Ÿ“ฆ manideepk90 / demo-app-server

๐Ÿ“„ App.css ยท 81 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81#root {
  max-width: 1280px;
  padding: 10px;
  width: 100%;
  padding: 10px 45px;
}

body {
  place-items: start;
  display: flex;
  justify-content: start;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.json-container {
  flex-wrap: wrap;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  justify-content: center;
  display: flex;
  gap: 10px;
}

.root-container {
  display: flex;
  gap: 10px;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  align-items: start;
}
main {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bt {
  user-select: none;
  transition: background-color 0.1s ease-in-out;
  border-radius: 4px;
  padding: 5px 10px;
  outline: none;
  border: 0px;
  user-select: none;
}

.bt-primary {
  background-color: rgb(0, 139, 0);
  min-width: 100px;
  max-width: 150px;
}
.bt-secondary {
  background-color: rgb(0, 139, 0);
  min-width: 70px;
  max-height: 30px;
  max-width: 150px;
}
.bt-secondary:hover {
  background-color: rgb(0, 124, 0);
}

.bt-primary:hover {
  background-color: rgb(0, 124, 0);
}

@media screen and (min-width: 900px) {
  #root {
    padding: 20px 40px;
  }
  .root-container {
    flex-wrap: nowrap;
  }
}