zj
2024-06-03 cd10c1c4b723da0ae8496bf9c4f68a12e159fd97
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
@tailwind base;
@tailwind components;
@tailwind utilities;
 
.rich-text__container ul {
  list-style: square !important;
  padding-left: 20px !important;
  margin-bottom: 12px;
}
 
.rich-text__container h5 {
  margin: 12px 0;
}
 
.rich-text__container ol {
  list-style: auto !important;
  padding-left: 20px !important;
}
a {
  color: #0000ee; 
  text-decoration: underline;
}
 
 
/* @layer components {
  .btn-blue {
    @apply py-2 px-4 bg-blue-500 text-white font-semibold rounded-lg shadow-md hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-blue-400 focus:ring-opacity-75;
  }
} */
 
@layer base {
  h1 {
    font-weight: 600;
    font-size: 46px;
    margin-bottom: 16px;
    color: #141e30;
  }
  h2 {
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 12px;
    color: #141e30;
  }
 
  h3 {
    font-weight: 600;
    font-size: 36px;
    color: #141e30;
  }
 
/* desc */
  h4{
    color: #141e30;
    font-size:  24px;
    font-weight: 300;
  }
 
  h5{
    color: #141e30;
    font-size:  18px;
    line-height: 180%;
    font-weight: 300;
  }
 
  /* question */
  h6{
    color: #141e30;
    font-size:  16px;
    line-height: 160%;
    font-weight: 300;
  }
}