-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmain.css
159 lines (130 loc) · 2.82 KB
/
main.css
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
/* html {
font-size: 22px;
}
body {
background-color: #EDE8F5;
color: rgb(69, 132, 226);
}
.logo{
text-align: center;
border-radius: 10px;
}
.logo img {
width: 204px;
height: 192px;
}
.top{
text-align: 10px;
display: inline;
margin: 870px;
letter-spacing: 1px;
}
.top_two{
text-align: end;
display: inline;
}
table, tr,th,td caption{
border: 2px solid #c13be2;
font-family: 'Courier New', Courier, monospace;
border-collapse: collapse;
padding: 0.10rem;
}
.header{
background-color: rgb(156, 84, 192);
color: #fff;
padding-left: 5px;
padding: 5px;
border: 3px;
border-style: solid;
border-color: goldenrod;
}
.step{
text-align: center;
}
li{
color: rgb(163, 6, 6);
display: inline;
padding: 5px;
margin-right: 5px;
text-size-adjust: auto;
} */
html {
font-size: 22px;
}
body {
background-color: #EDE8F5;
color: rgb(69, 132, 226);
margin: 0;
padding: 0;
}
.logo {
text-align: center;
border-radius: 10px;
}
.logo img {
width: 100%; /* Make image responsive */
max-width: 204px; /* Limit max size */
height: auto; /* Maintain aspect ratio */
}
.top {
text-align: center; /* Use center instead of a fixed value */
display: inline-block; /* Change to inline-block for better layout control */
margin: 20px auto; /* Center with auto margins */
letter-spacing: 1px;
}
.top_two {
text-align: right;
display: inline-block; /* Use inline-block for consistency */
}
table, tr, th, td, caption {
border: 2px solid #c13be2;
font-family: 'Courier New', Courier, monospace;
border-collapse: collapse;
padding: 0.10rem;
width: 100%; /* Make table responsive */
max-width: 600px; /* Limit max size */
margin: auto; /* Center the table */
}
.header {
background-color: rgb(156, 84, 192);
color: #fff;
padding: 10px; /* Increased padding for better touch target */
border: 3px solid goldenrod; /* Fixed border style */
}
.step {
text-align: center;
}
li {
color: rgb(163, 6, 6);
display: inline-block; /* Change to inline-block */
padding: 5px;
margin-right: 5px;
}
@media (max-width: 768px) {
html {
font-size: 18px; /* Decrease font size on smaller screens */
}
.top {
margin: 10px auto; /* Adjust margin */
}
.header {
font-size: 1.2em; /* Scale header size */
}
li {
margin-right: 2px; /* Decrease margin */
}
.logo img {
max-width: 100%; /* Ensure logo is responsive */
}
}
@media (max-width: 480px) {
html {
font-size: 16px; /* Further decrease font size */
}
.header {
padding: 5px; /* Reduce padding */
}
table, tr, th, td {
font-size: 0.9em; /* Scale down table font size */
}
}