forked from anishrijal/responsiveweb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnotepad.css
More file actions
47 lines (47 loc) · 667 Bytes
/
notepad.css
File metadata and controls
47 lines (47 loc) · 667 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
.logo{
left:45%;
flex: 0 0 100%;
}
@keyframes logo{
from {
transform: rotate(0) scale(s);
}
0%{
transform: rotate(-720deg) scale(1);
left: 45%;
}
to{
transform: rotate(0) scale(1);
}
}
.flex-list{
margin-left: 0;
margin-top: 100px;
}
.flex-list li:first-of-type{
border-left: none;
}
.home, .about, .menu, .contact{
flex: 1 1 35%;
}
.columnone{
flex: 1 1 100%;
border-right: none;
border-bottom: 3px double black;
}
.columntwo{
display: flex;
padding-left: 0;
flex: 1;
}
.paraone, .paratwo{
flex: 1 1 50%;
padding: 0 10px 0 10px;
}
.social{
flex: 1 1 35%;
}
.copyright{
flex: 1 1 50%;
border-right: none;
}