-
Notifications
You must be signed in to change notification settings - Fork 0
/
indexstyle.css
69 lines (65 loc) · 1.72 KB
/
indexstyle.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
@import url('https://fonts.googleapis.com/css2?family=Concert+One&family=Orbitron&family=Oswald:wght@300&family=Quicksand:wght@300;600&family=Roboto+Mono:wght@300&family=Roboto:ital@1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Concert+One&family=Libre+Franklin&family=Orbitron&family=Oswald:wght@300&family=Quicksand:wght@300;600&family=Roboto+Mono:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Concert+One&family=Orbitron&family=Oswald:wght@300&family=Quicksand:wght@300;600&family=Roboto+Mono:wght@300&family=Taviraj&display=swap');
*{
font-size: 23px;
}
body{
background-color: rgb(171, 156, 185);
}
.main-head {
font-family: 'Libre Franklin', sans-serif;
text-align: center;
}
.main-head p{
font-size: 38px;
}
.main-calci{
display: flex;
justify-content: center;
}
.main-calculator{
border: 2px solid black;
background-color: rgb(82, 67, 67);
width: 450px;
border-radius: 12px;
}
.display-box{
color: wheat;
text-align: center;
font-family: 'Orbitron', sans-serif;
}
.button{
font-family: 'Orbitron', sans-serif;
margin: 12px 12px;
width: 83px;
height: 40px;
border-radius: 12px;
}
#result{
margin: 12px 12px;
border: 4px solid black;
width: 300px;
height: 40px;
border-radius: 12px;
}
.credits{
font-family: 'Taviraj', serif;
margin-top: 40px;
text-align: center;
}
.credits a{
text-decoration: none;
color: rgb(3, 55, 68);
}
.credits a:hover{
text-decoration: underline;
}
@media (min-width : 1000px)
{
.button:hover{
cursor: pointer;
background-color: black;
color: white;
}
}