-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
70 lines (70 loc) · 1.32 KB
/
style.css
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
body{
margin: 0;
padding: 0;
font-family: tahoma;
}
.center{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%) rotate(-45deg);
}
.pencil{
width: 400px;
height: 15px;
background: #ffc334;
border-top: 10px solid #ffd268;
border-bottom: 10px solid #e2af38;
}
.pencil p{
margin: 0;
padding: 0;
text-align: center;
font-size: 8px;
line-height: 15px;
text-transform: uppercase;
font-weight: bold;
color: #d09200;
}
.pencil:before{
content: '';
position: absolute;
left: -80px;
top: 0;
border-style: solid;
border-color: transparent #e29663 transparent transparent;
border-width: 15px 40px 20px;
}
.pencil:after{
content: '';
position: absolute;
left: -80px;
top: -1.7px;
border-style: solid;
border-color: transparent #424344 transparent transparent;
border-width: 15px 40px 20px;
transform: scale(.3);
}
.top{
position: absolute;
top: 0;
right: 0;
height: 15px;
width: 30px;
background-color: #ccc;
border-top: 10px solid #dedede;
border-bottom: 10px solid #b9bfbf;
}
.top::before{
content: '';
position: absolute;
top: -10px;
right: -100%;
width: 150%;
height: 100%;
background: #d76f6e;
border-top: 10px solid #da8e8d;
border-bottom: 10px solid #c85957;
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
}