-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflex.css
More file actions
42 lines (37 loc) · 767 Bytes
/
Copy pathflex.css
File metadata and controls
42 lines (37 loc) · 767 Bytes
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
body{
font-family: 'Open Sans', sans-serif;
}
h1{
color:blueviolet;
text-align: center;
font-size: 100px;
border: 5px solid black;
}
h1:hover{
box-shadow: 0 0.5em 0.5em -0.5em #dc1919 ;
transform: translateY(-0.05em);
color: red;
border: 5px;
border-color: black;
cursor: pointer;
border: 5px solid rgb(238, 23, 23);
}
#container {
background-color: rgb(9, 72, 51);
width: 100%;
height: 500px;
margin: auto;
border: 5px solid black;
display: flex;
flex-direction: row;
justify-content:center;
flex-wrap: wrap;
align-items: center;
}
#container div{
width: 200px;
height: 200px;
}
div:nth-of-type(odd){
flex-grow: 1;
}