chansung commited on
Commit
111a78c
β€’
1 Parent(s): 26a93e6

Create styles.py

Browse files
Files changed (1) hide show
  1. constants/styles.py +75 -0
constants/styles.py ADDED
@@ -0,0 +1,75 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ STYLE = """
2
+
3
+ @media only screen and (min-width: 700px) {
4
+ .main {
5
+ width: 70% !important;
6
+ margin: 0 auto; /* Center the container */
7
+ }
8
+ }
9
+
10
+ .small-font{
11
+ font-size: 12pt !important;
12
+ }
13
+
14
+ .small-font:hover {
15
+ font-size: 20px !important;
16
+ transition: font-size 0.3s ease-out;
17
+ transition-delay: 1.5s;
18
+ }
19
+
20
+ .group {
21
+ padding-top: 10px;
22
+ padding-left: 10px;
23
+ padding-right: 10px;
24
+ padding-bottom: 10px;
25
+ border: 2px dashed gray;
26
+ border-radius: 20px;
27
+ box-shadow: 5px 3px 10px 1px rgba(0, 0, 0, 0.4) !important;
28
+ }
29
+
30
+ .accordion > button > span{
31
+ font-size: 12pt !important;
32
+ }
33
+
34
+ .accordion {
35
+ border-style: dashed !important;
36
+ border-left-width: 2px !important;
37
+ border-bottom-width: 2.5px !important;
38
+ border-top: none !important;
39
+ border-right: none !important;
40
+ box-shadow: none !important;
41
+ }
42
+
43
+ .no-gap {
44
+ gap: 0px;
45
+ }
46
+
47
+ .no-radius {
48
+ border-radius: 0px;
49
+ }
50
+
51
+ .textbox-no-label > label > span {
52
+ display: none;
53
+ }
54
+
55
+ .exp-type > span {
56
+ display: none;
57
+ }
58
+
59
+ .conv-type > span {
60
+ display: none;
61
+ }
62
+
63
+ .conv-type .wrap:nth-child(3) {
64
+ width: 167px;
65
+ margin: auto;
66
+ }
67
+
68
+ button {
69
+ font-size: 10pt !important;
70
+ }
71
+
72
+ h3 {
73
+ font-size: 13pt !important;
74
+ }
75
+ """