-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
77 lines (73 loc) · 1.1 KB
/
styles.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
67
68
69
70
71
72
73
74
75
76
77
body{
box-sizing: border-box;
display: flex;
flex-direction: column;
min-height: 100vh;
}
.content{
flex: 1;
}
header{
background-color: black;
}
.topbar{
color:white;
display:flex;
}
.logo {
flex-basis: 30%;
}
.button {
color: white;
flex-basis: 70%;
display: flex;
justify-content: flex-end;
margin-right: 0;
margin-left: auto;
}
button{
color: white;
text-align: center;
text-decoration: none;
background-color: #4C5FD5;
border-radius: 12px;
padding: 15px 32px;
}
main{
padding: 10%;
}
section{
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
background-color: #dadbf1;
}
.impBlocks{
display: flex;
justify-content: center;
align-items: center;
}
.subBlock{
flex-basis: 50%;
}
footer{
background-color: black;
color: white;
}
img{
max-width: 87px;
float: left;
}
.topbar a{
padding: 20px;
}
.mainFooter{
display: flex;
flex-wrap: wrap;
justify-content: flex-start ;
align-items: center;
}
ul{
list-style-type:none;
}