-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdisplay.css
executable file
·60 lines (47 loc) · 1.02 KB
/
display.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
@charset "UTF-8";
/* CSS Document */
@font-face{
font-family: "LCD2U";
src: url('http://fontsforweb.com/public/fonts/525/LCD2U.eot');
src: local("LCD2 Ultra"), url('http://fontsforweb.com/public/fonts/525/LCD2U.ttf') format("truetype");
}
#display{
position: relative;
display: inline-block;
top: 21px;
width: 600px;
height: 280px;
padding: 16px;
font-family: LCD2U, Arial, Helvetica, sans-serif;
text-align: right;
font-size: 120px;
line-height: 280px;
background-color: #7992AA;
border-radius: 50%;
box-shadow: inset 0px 3px 1px white,
inset 0px -3px 1px black,
-3px -4px -0px #7992AA;
}
#displayBg{
position: absolute;
width: inherit;
height: inherit;
border-radius: inherit;
background-color: #000;
box-shadow: 0px -3px 1px black,
0px 3px 1px white;
}
#displayShadow{
position:absolute;
margin-right: 0.5em;
right:0;
color: #200;
text-shadow: 0px 0px 0.1em #200;
}
#displayText{
position:absolute;
margin-right: 0.5em;
right:0;
color: #F00;
text-shadow: 0px 0px 0.1em red;
}