-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmy.css
More file actions
80 lines (66 loc) · 1.32 KB
/
my.css
File metadata and controls
80 lines (66 loc) · 1.32 KB
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
78
79
80
#my {
border: 10px solid #FFF;
}
#my.hover {
border: 20px solid #FFF;
}
#tabs-container ul {
list-style: none;
margin: 0;
padding: 0;
}
#tabs-container ul li {
width: 80%;
padding: 0 20px;
background: gray;
padding-bottom: 8px;
height: 20px;
overflow: hidden;
border-bottom: 1px dotted #CCC;
border-radius: 10px 10px 10px 10px;
-webkit-animation: myanim 1s;
-moz-animation: myanim 1s;
-o-animation: myanim 1s;
animation: myanim 1s;
-webkit-transition: height 0.3s ease-out;
-moz-transition: height 0.3s ease-out;
-o-transition: height 0.3s ease-out;
transition: height 0.3s ease-out;
}
#tabs-container li:hover {
background: gray;
min-height: 20px;
max-height: 120px;
height: 100px;
overflow: visible;
}
#tabs-container h3 {
margin: 0;
padding: 0;
padding-bottom: 5px;
font-family: Arial, Helvetica, sans-serif;
color: #FFFFFF;
border-bottom: 1px dotted #CCC;
margin-bottom: 10px;
text-align: center;
}
#tabs-container p {
margin: 0;
padding: 0;
padding-bottom: 5px;
font-size: 16px;
font-family: Arial, Helvetica, sans-serif;
color: #FFFFFF;
margin-bottom: 10px;
margin-top: 10px;
}
#tabs-container hasComment p {
margin: 0;
padding: 0;
padding-bottom: 5px;
height: 100px;
font-family: Arial, Helvetica, sans-serif;
color: #FFFFFF;
margin-bottom: 10px;
margin-top: 10px;
}