-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
65 lines (54 loc) · 1.44 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
/* MIT License - Copyright (c) 2020 - Dibyadeep Saha */
@font-face {
font-family: 'Open-Sans';
src: url('OpenSans-Regular.ttf');
}
@font-face {
font-family: 'Calculator';
src: url('Calculator.ttf');
}
body {
background-image: url("https://crella.sfo2.cdn.digitaloceanspaces.com/wp-content/uploads/2019/12/28221158/40-Black-Wood-Background-Textures-7-1594x1062.jpg");
font-family: "Open-Sans";
}
.divider {
background-color: white;
height: 1px;
width: 100%;
align-self: center;
}
#title {
color: white;
font-size: 60px;
}
.number {
background-color: rgb(84, 94, 77);
color: white;
padding-left: 15px;
padding-right: 15px;
font-family: "Calculator";
font-size: 35px;
}
.number-entry {
background-image: url("https://crella.sfo2.cdn.digitaloceanspaces.com/wp-content/uploads/2019/12/28221158/40-Black-Wood-Background-Textures-7-1594x1062.jpg");
color: white;
border-color: white;
border-width: 0.5px;
}
.number-entry:hover {
border-color: rgb(84, 94, 77);
}
.calculate-button {
background-image: url("https://crella.sfo2.cdn.digitaloceanspaces.com/wp-content/uploads/2019/12/28221158/40-Black-Wood-Background-Textures-7-1594x1062.jpg");
color: white;
border-color: white;
border-width: 0.5px;
}
.calculate-button:hover {
border-color: rgb(84, 94, 77);
}
.calculation-type-input {
color: white;
padding-left: 15px;
padding-right: 15px;
}