-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.css
63 lines (53 loc) · 901 Bytes
/
styles.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
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
html, body {
margin:0px;
padding:0px;
font-size: 14px;
font-family:Arial,Verdana,Helvetica,sans-serif;
border-style:none;
}
table {
margin-left: auto;
margin-right: auto;
width: 100%;
}
td {
text-align: center;
}
tr {
height: 50px;
}
.tr {
height: 120px;
}
.td {
font-size: 25px;
}
.calc {
padding: 15px 25px 15px 25px;
background-color: #ebebeb;
border-radius: 5px;
border: 1px solid #000000;
margin: auto;
max-width: 500px;
}
#smd-code {
height: 90px;
font-size: 60px;
width: 200px;
text-align: center;
background-color: #000000;
border-radius: 10px;
color:#ffffdd;
padding-bottom:5px;
border: none;
}
#result {
font-size: 20px;
color: crimson;
font-weight: 700;
}