elyor-ml commited on
Commit
559af80
·
1 Parent(s): 5bb9fd9

font size is bigger

Browse files
Files changed (1) hide show
  1. src/App.css +24 -21
src/App.css CHANGED
@@ -4,6 +4,9 @@
4
  padding: 2rem;
5
  text-align: center;
6
  font-family: 'Arial', sans-serif;
 
 
 
7
  }
8
 
9
  .loading {
@@ -18,16 +21,16 @@
18
  .media-container {
19
  position: relative;
20
  width: 100%;
21
- max-width: 800px;
22
- height: 45vh;
23
- max-height: 400px;
24
  margin: 0 auto 3rem;
25
  display: flex;
26
  justify-content: center;
27
  align-items: center;
28
  overflow: hidden;
29
- border-radius: 8px;
30
- box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
31
  background-color: #f0f0f0;
32
  }
33
 
@@ -41,23 +44,23 @@
41
  display: flex;
42
  gap: 1rem;
43
  justify-content: center;
44
- flex-wrap: wrap;
45
  margin-bottom: 2rem;
46
  }
47
 
48
  .semantic-box {
49
- width: 22%;
50
- min-width: 120px;
51
- padding: 1rem;
52
- border-radius: 8px;
53
- border: 2px solid #000;
54
- font-size: 1.2rem;
55
  font-weight: bold;
56
- box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
57
  display: flex;
58
  justify-content: center;
59
  align-items: center;
60
- min-height: 70px;
61
  text-align: center;
62
  }
63
 
@@ -71,14 +74,14 @@
71
 
72
  .option {
73
  background-color: #d3d3d3;
74
- border: 2px solid #000;
75
- border-radius: 6px;
76
- padding: 0.8rem 1.2rem;
77
- font-size: 1.1rem;
78
  cursor: pointer;
79
  transition: transform 0.15s, box-shadow 0.15s;
80
- min-width: 120px;
81
- box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
82
  }
83
 
84
  .option:hover {
@@ -111,7 +114,7 @@
111
 
112
  @media (max-width: 768px) {
113
  .semantic-boxes {
114
- flex-direction: column;
115
  align-items: center;
116
  }
117
 
 
4
  padding: 2rem;
5
  text-align: center;
6
  font-family: 'Arial', sans-serif;
7
+ display: flex;
8
+ flex-direction: column;
9
+ align-items: center;
10
  }
11
 
12
  .loading {
 
21
  .media-container {
22
  position: relative;
23
  width: 100%;
24
+ max-width: 900px;
25
+ height: 55vh;
26
+ max-height: 500px;
27
  margin: 0 auto 3rem;
28
  display: flex;
29
  justify-content: center;
30
  align-items: center;
31
  overflow: hidden;
32
+ border-radius: 12px;
33
+ box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
34
  background-color: #f0f0f0;
35
  }
36
 
 
44
  display: flex;
45
  gap: 1rem;
46
  justify-content: center;
47
+ flex-wrap: nowrap;
48
  margin-bottom: 2rem;
49
  }
50
 
51
  .semantic-box {
52
+ width: calc(25% - 1rem);
53
+ min-width: 140px;
54
+ padding: 1.4rem 1rem;
55
+ border-radius: 10px;
56
+ border: 3px solid #000;
57
+ font-size: 1.6rem;
58
  font-weight: bold;
59
+ box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
60
  display: flex;
61
  justify-content: center;
62
  align-items: center;
63
+ min-height: 90px;
64
  text-align: center;
65
  }
66
 
 
74
 
75
  .option {
76
  background-color: #d3d3d3;
77
+ border: 3px solid #000;
78
+ border-radius: 8px;
79
+ padding: 1rem 1.5rem;
80
+ font-size: 1.3rem;
81
  cursor: pointer;
82
  transition: transform 0.15s, box-shadow 0.15s;
83
+ min-width: 140px;
84
+ box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
85
  }
86
 
87
  .option:hover {
 
114
 
115
  @media (max-width: 768px) {
116
  .semantic-boxes {
117
+ flex-wrap: wrap;
118
  align-items: center;
119
  }
120