-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDesignWebsite.css
More file actions
89 lines (85 loc) · 1.32 KB
/
Copy pathDesignWebsite.css
File metadata and controls
89 lines (85 loc) · 1.32 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
body {
margin: 0px;
padding: 0px;
}
.mainPage {
min-height: 100vh;
display: flex;
flex-direction: column;
}
.header,
.description,
.infomation {
flex: 1;
}
.header {
background-color: aliceblue;
display: flex;
flex-direction: row;
background-color: #1f2937;
color: white;
align-items: center;
justify-content: space-evenly;
padding: 20px;
}
.logo {
font-weight: Bold;
}
.links ul {
display: flex;
flex-direction: row;
gap: 16px;
list-style: none;
}
a {
text-decoration: none;
color: white;
}
.description{
background-color: #1f2937;
}
.rows {
display: flex;
flex-direction: row;
justify-content: space-evenly;
}
.details {
color: white;
width: 30%;
padding: 20px 40px;
}
.details h1 {
font-weight: bold;
}
.details p {
color:antiquewhite;
}
.details button {
color: white;
background-color: #3882f6;
font-weight: bold;
padding: 10px 15px;
border: none;
border-radius: 10px;
}
.Image {
width: 200px;
height: auto;
}
.Image img {
height: auto;
width: 100%;
border-radius: 10px;
}
.infomation {
background-color: white;
}
.infomation h1 {
display: flex;
justify-content: center;
}
.ImagesRow {
display: flex;
justify-content: row;
align-items: center;
}