-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflex.css
More file actions
59 lines (56 loc) · 916 Bytes
/
flex.css
File metadata and controls
59 lines (56 loc) · 916 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
* {
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
body {
background-color: rgb(39, 38, 38);
font-family: [Lexend Deca](https://fonts.google.com/specimen/Lexend+Deca);
}
main {
background-color: blanchedalmond;
width: 80%;
margin: auto;
display: flex;
align-items: center;
/* justify-content: center; */
height: 100vh;
padding-right: 100px;
padding-left: 100px;
/* border-radius: left 5%; */
}
#a {
background-color: rgb(252, 121, 34);
}
#b {
background-color: rgb(2, 105, 105);
}
#c {
background-color: rgb(0, 26, 26);
}
div {
height: 80%;
align-items: center;
/* width: 50%; */
/* padding: 2cm; */
text-align: center;
/* justify-content: center; */
}
button{
width: 100px;
height: 40px;
border-radius: 10%;
margin-top: 100px;
}
h3{
margin-top: 30px;
}
p{
margin-top: 50px;
}
#a{
border-radius: left 5cm;
}
img{
margin-top: 5px;
}