-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
102 lines (87 loc) · 1.37 KB
/
styles.css
File metadata and controls
102 lines (87 loc) · 1.37 KB
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
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
font-family: "Helvetica Neue", -apple-system, BlinkMacSystemFont, "Segoe UI",
Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", sans-serif;
line-height: 1.5;
color: #2a2a2a;
}
button,
label {
cursor: pointer;
}
input {
font: inherit;
}
img {
display: block;
max-width: 100%;
height: auto;
}
.section {
padding-top: 40px;
padding-bottom: 40px;
}
ul {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
gap: 25px;
user-select: none;
list-style: none;
}
.item {
list-style: none;
width: 250px;
padding: 20px;
background-color: white;
box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
border-radius: 8px;
margin: 10px;
}
.item img {
width: 250px;
height: 300px;
border-radius: 8px;
margin-bottom: 10px;
}
.item h2 {
font-size: 1.2rem;
margin: 0;
}
.item p {
font-size: 1rem;
margin: 5px 0;
}
.modal {
width: 500px;
padding: 20px;
user-select: none;
background-color: white;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
border-radius: 8px;
display: flex;
flex-direction: column;
align-items: center;
}
.modal img {
max-width: 400px;
height: 500px;
border-radius: 8px;
margin-bottom: 10px;
}
.modal h2 {
font-size: 1.5rem;
margin: 0;
}
.modal h3 {
font-size: 1.2rem;
margin: 10px 0;
}
.modal p {
font-size: 1rem;
margin: 0;
}