-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss.css
More file actions
49 lines (49 loc) · 770 Bytes
/
css.css
File metadata and controls
49 lines (49 loc) · 770 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
*{
margin: 0;
padding: 0;
}
header{
position: fixed;
left: 0;
top: 0;
width: 100%;
text-align: center;
font-size: 20px;
background-color: lightgreen;
color: #fff;
padding: 20px 0;
height: 30px;
box-shadow: 0 1px 2px rgba(0,0,0,0.4);
z-index: 100;
}
footer{
text-align: center;
padding: 200px 0;
background-color: lightskyblue;
color: #fff;
}
img{
display: block;
width: 100%;
}
main{
padding-top: 90px;
}
.wrap::after{
content: " ";
display: block;
clear: both;
}
.wrap div{
float: left;
width: 50%;
}
.wrap .follow-text{
position: relative;
transition: all 600ms ease-out;
box-sizing: border-box;
padding: 0 20px;
}
.activElem{
margin-top:20px;
}