-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
62 lines (52 loc) · 1.53 KB
/
style.css
File metadata and controls
62 lines (52 loc) · 1.53 KB
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
body {
margin: 0px;
padding: 0px;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
background-color: lightskyblue;
}
.main-countainer {
display: flex;
flex-direction: column;
justify-content: center;
height: 40rem;
text-align: center;
}
.logo {
color: rgb(254, 124, 18);
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-size: 5rem;
font-weight: bold;
margin-bottom: 0px;
}
.value {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: 7rem;
}
.inc-btn,.dec-btn {
padding: 2px;
background-color: transparent;
border-radius: 3px;
border: 2px solid black;
width: 120px;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-weight: bold;
}
.dec-btn:hover,.inc-btn:hover{
background-color: rgb(0, 0, 0);
color: rgb(255, 255, 255);
}
.res-btn {
padding: 2px;
background-color: transparent;
border-radius: 3px;
border: 2px solid black;
margin-left: 10px;
margin-right: 10px;
width: 70px;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-weight: bold;
}
.res-btn:hover {
background-color: rgb(235, 0, 0);
color: rgb(255, 255, 255);
}