-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflexbox2.css
More file actions
56 lines (56 loc) · 1.33 KB
/
Copy pathflexbox2.css
File metadata and controls
56 lines (56 loc) · 1.33 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
*{
border: 0;
margin: 0px 0px;
}
header{
background-color: blueviolet;
color: antiquewhite;
text-align: center;
font-family: cambria;
padding: 18px;
}
img{
width: 100%;
}
p{
margin: 20px 23px;
}
h2{
text-align: center;
padding: 30px;
}
.line1{
display: flex;
justify-content: space-around;
}
.line2{
display: flex;
justify-content: space-around;
}
.line3{
display: flex;
justify-content: space-around;
}
.subdiv{
width: 24%;
border: 1px solid black;
margin-top: 30px;
background-color: aliceblue;
box-shadow: 8px 5px 1px rgb(53, 52, 52);
}
a{
display: block;
background-color: rgba(119, 118, 118, 0.808);
text-decoration: none;
color: aliceblue;
text-align: center;
padding: 14px;
font-size: large;
margin: 20px 40px;
}
a:hover{
background-color: black;
}
.subdiv:hover{
transform: scale(1.05);
}