-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
62 lines (62 loc) · 998 Bytes
/
style.css
File metadata and controls
62 lines (62 loc) · 998 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
61
62
* {
box-sizing: border-box;
}
h1 {
width: 950px;
margin: 40px auto;
}
h4 {
border-bottom: 1px solid #ccc;
}
.container {
width: 960px;
margin: 0 auto;
padding: 40px;
padding-bottom: 400px;
}
.bullet {
display: flex;
margin-left: 160px;
font-size: 14px;
line-height: 25px;
height: 25px;
margin-bottom: 12px;
}
.bullet-sym {
cursor: pointer;
width: 30px;
}
.bullet-input {
flex: 1;
height: 25px;
font-size: 14px;
outline: 0;
border: 0;
}
.bullet-input.editing {
border-bottom: 2px solid #999;
}
.prevbutton {
cursor: pointer;
font-size: 18px;
display: block;
width: 100%;
background: #fff;
padding: .4em 0;
border: 1px solid #999;
}
.prevbutton:hover {
border-color: #ccc;
outline: none;
}
.slide-fade-enter-active {
transition: all .4s ease;
}
.slide-fade-leave-active {
transition: all .8s cubic-bezier(1.0, 0.5, 0.8, 1.0);
}
.slide-fade-enter, .slide-fade-leave-active {
transform: translateY(20px);
height: 0;
opacity: 0;
}