-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
120 lines (101 loc) · 1.71 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
html, body {
margin: 0;
padding: 0;
}
#wrapper {
position: absolute;
top: 50%;
left: 50%;
margin-right: -50%;
transform: translate(-50%, -50%);
}
.stripe {
width: 1vw;
margin: 0.3vw;
}
.btnblock {
display: block;
}
.btnblock button {
margin: 0 5px;
}
.display {
display: block;
height: 30vw;
border: 1px solid black;
margin: 10px 0;
}
.display div {
height: 100%;
width: 49%;
margin: 0;
display: inline-block;
text-align: center;
line-height: 30vw;
}
#dp-kix {
border-right: 1px solid black;
}
#dp-result {
font-size: 24vw;
}
#dp-kix {
font-size: 12vw;
font-family: KIX;
vertical-align: bottom;
}
#botbtns {
-webkit-transform: scaleY(-1);
transform: scaleY(-1);
}
@font-face {
font-family: 'KIX';
src: url('assets/kix.ttf') format('truetype');
}
#controls {
padding: 25px 0;
}
#buffer {
height: 1.8vw;
font-size: 1.5vw;
width: 28.9vw;
line-height: 1.8vw;
vertical-align: middle;
margin-top: -0.2vw;
}
.ctrlbtn {
box-shadow: inset 0px 1px 0px 0px #ffffff;
background: linear-gradient(to bottom, #f9f9f9 5%, #e9e9e9 100%);
background-color: #f9f9f9;
border-radius: 6px;
border: 1px solid #9c9c9c;
display: inline-block;
cursor: pointer;
color: #666666;
font-family: Arial;
font-size: 1.1vw;
font-weight: bold;
padding: 6px 24px;
text-decoration: none;
text-shadow: 0px 1px 0px #ffffff;
}
.ctrlbtn:hover {
background:linear-gradient(to bottom, #e9e9e9 5%, #f9f9f9 100%);
background-color:#e9e9e9;
}
.ctrlbtn:active {
position:relative;
top:1px;
}
.kixbtn {
border: 1px solid #666;
border-radius: 6px;
background: linear-gradient(#ffffff, #f6f6f6);
}
.kixbtn:hover {
background: linear-gradient(#f6f6f6, #ffffff);
}
.kixbtn:active {
position:relative;
top:1px;
}