-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
66 lines (59 loc) · 1.15 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
.container {
display: flex;
flex-direction: column;
height: 100vh;
}
h1{
color: white;
text-align: center;
}
.header {
flex: 1;
background-color: #f0f0f0;
background-image: url(How_AI_Works_1024x1024.webp);
background-position: center;
display: flex;
align-items: center;
justify-content: space-between;
padding: 20px;
}
.button {
display: inline-block;
padding: 10px 15px;
background-color: #007bff;
color: #fff;
text-decoration: none;
border: none;
border-radius: 3px;
}
.header img {
width: 100px;
height: 100px;
}
.cards {
flex: 2;
display: flex;
flex-wrap: wrap;
justify-content: space-around;
padding: 20px;
}
.card {
width: 200px;
height: 330px;
border: 1px solid #ccc;
padding: 20px;
text-align: center;
}
.card img {
width: 100%;
height: 200px;
object-fit: cover;
}
.card button {
margin-top: 10px;
padding: 10px;
background-color: #007bff;
color: #fff;
border: none;
cursor: pointer;
}