-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
57 lines (51 loc) · 1005 Bytes
/
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
.numlet-topleft {
position:absolute;
top:50%;
left:50%;
transform: translate(-300%,-200%);
}
.numlet-topright {
position:absolute;
top:50%;
left:50%;
transform: translate(200%,-200%);
}
.numlet-bottomleft {
position:absolute;
top:50%;
left:50%;
transform: translate(-300%,100%);
}
.numlet-bottomright {
position:absolute;
top:50%;
left:50%;
margin-right:-50%;
transform: translate(200%,100%);
}
.numlet-text {
font-size: 60px;
text-align: center;
}
.vertical-line {
height: 80%;
width:0px;
position:absolute;
top:50%;
left:50%;
margin-right:-50%;
transform: translate(-50%,-50%);
float: center;
border: 1px inset; /* This is default border style for <hr> tag */
}
.horizontal-line {
height: 0px;
width:60%;
position:absolute;
top:50%;
left:50%;
margin-right:-50%;
transform: translate(-50%,-50%);
float: center;
border: 1px inset; /* This is default border style for <hr> tag */
}