This repository has been archived by the owner on Jul 1, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
day2.css
61 lines (55 loc) · 1.44 KB
/
day2.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
/* Stylesheet for calculator */
h1 {
font-size: 48px;
text-align: center;
}
.calculator {
font-size: 24px;
}
.calculator button {
border-top: 1px solid #84a999;
background: #a8c2b7;
background: -webkit-gradient(linear, left top, left bottom, from(#65628d), to(#a8c2b7));
background: -webkit-linear-gradient(top, #65628d, #a8c2b7);
background: -moz-linear-gradient(top, #65628d, #a8c2b7);
background: -ms-linear-gradient(top, #65628d, #a8c2b7);
background: -o-linear-gradient(top, #65628d, #a8c2b7);
padding: 11px 22px;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
-webkit-box-shadow: rgba(0,0,0,1) 0 1px 0;
-moz-box-shadow: rgba(0,0,0,1) 0 1px 0;
box-shadow: rgba(0,0,0,1) 0 1px 0;
text-shadow: rgba(0,0,0,.4) 0 1px 0;
color: white;
font-size: 18px;
font-family: Georgia, serif;
text-decoration: none;
vertical-align: middle;
}
.calculator button:hover {
border-top-color: #62758d;
background: #62758d;
color: #ccc;
}
.calculator button:active {
border-top-color: #65628d;
background: #65628d;
}
.calculator input[type="text"] {
font-size: 24px;
padding: 10px;
margin: 10px;
border-radius:5px;
}
.calculator .output {
background-color: rgb(98, 122, 143);
border-color:lightgray;
border-radius:5px;
border-width:1px;
height:50px;
padding-left:15px;
padding-right:15px;
line-height:50px;
}