-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss.css
More file actions
61 lines (49 loc) · 706 Bytes
/
css.css
File metadata and controls
61 lines (49 loc) · 706 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
60
body{
margin:0;
padding:0;
}
a{
text-decoration:none;
}
h1{
margin:0;
padding:0;
}
.aa{
display:block;
width:100%;
height:400px;
background-color:rgba(166,166,166,1.00);
padding:5%;
}
.aa section{
display:block;
width:20%;
float:left;
height:40px;
overflow:hidden;
text-align:center;
}
.aa section p{
padding:10px;
}
.aa section h1{
padding:10px;
}
.aa section a{
display:block;
color:rgba(244,243,25,1.00);
}
.aa section:target {
height: 360px;
background-color:rgba(90,169,189,1.00);
}
.aa section,
.aa section h1
{
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-ms-transition: all 1s ease;
-o-transition: all 1s ease;
transition: all 1s ease;
}