-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
114 lines (98 loc) · 1.66 KB
/
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
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
h1 {
text-align:center;
font-size:30px;
font-family: 'Spectral', serif;
font-weight:normal;
}
h2 {
text-align:center;
font-size:15px;
font-weight:normal;
font-family: 'Spectral', serif;
margin-top:-30px;
}
body {
background-color: lavender;
}
#overall {
margin:0 auto;
border:1px solid black;
width:800px;
padding:25px;
background-color:white;
font-family: 'Spectral', serif;
}
#display {
width:750px;
margin:10px;
padding:15px;
text-align:left;
height:60px;
background-color:#595959;
color:white;
border:5px double white;
font-family: 'Spectral', serif;
}
#top {
border-bottom:1px solid white;
}
#result {
text-align:right;
color:white;
font-style:italic;
}
button {
padding:30px;
width:80px;
font-family: 'Source Sans Pro', sans-serif;
font-weight:bold;
font-size:15px;
background-color:white;
border:1px solid black;
transition:0.5s;
border-radius:50%;
}
button:hover {
background-color:lightblue;
border:1px solid lightblue;
cursor:pointer;
transition:0.5s;
}
.row {
margin-bottom:10px;
}
#buttons {
display:flex;
flex-direction:column;
align-items:center;
}
#equal {
width:80px;
border-radius:50%;
}
#equal:hover {
background-color:lightgreen;
border:1px solid lightgreen;
transition:0.5s;
}
#plus:hover {
background-color:lightgreen;
border:1px solid lightgreen;
transition:0.5s;
}
#clear:hover {
background-color:salmon;
border:1px solid salmon;
}
a {
text-decoration:none;
color:white;
transition:0.5s;
padding-bottom:0.5px;
border-bottom:1px dotted white;
}
a:hover {
color:lightblue;
transition:0.5s;
border-bottom:1px dotted lightblue;
}