-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyle.css
52 lines (44 loc) · 918 Bytes
/
style.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
/* Styles for desktop and tablet screens */
body {
background-color: #e0f7fa;
}
.card {
border: none;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
background-color: #ffffff;
border-radius: 8px;
margin-top: 20px;
}
.card-title {
color: #007bff;
}
.card-text {
font-size: 24px;
font-weight: bold;
text-align: center;
padding: 20px;
margin-bottom: 0;
}
/* Styles for mobile screens */
@media screen and (max-width: 576px) {
body {
background-color: #e0f7fa;
}
.card {
border: none;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
background-color: #ffffff;
border-radius: 0;
margin-top: 0;
}
.card-title {
color: #007bff;
}
.card-text {
font-size: 16px;
font-weight: bold;
text-align: center;
padding: 10px;
margin-bottom: 10px;
}
}