-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
86 lines (68 loc) · 1.14 KB
/
styles.css
File metadata and controls
86 lines (68 loc) · 1.14 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
* {
font-family: 'Quicksand', sans-serif;
}
:root{
--color-1:#120907;
--color-2:#23223a;
--color-3:#5a5d8e;
--color-4:#9ca2e9;
--color-5:#dcdeed;
}
h6{
margin-top: 0;
font-size: 15px;
}
h1{
font-size: 60px;
margin-bottom: 0;
}
h1,h6{
color: var(--color-5);
}
body{
background-color: var(--color-3);
color: var(--color-2);
}
.body-calc{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 35vh;
background-color: var(--color-4);
padding: 15px;
border-radius: 15px;
}
.buttons-container{
margin-top: 10px;
margin-left: 3px;
}
.answer-container{
height: 100px;
text-align: right;
border-radius: 10px;
background-color: var(--color-5);
}
.answer-container>span{
margin-right: 10px;
font-size: 25px;
}
.credits{
font-size: 8px;
}
button{
border-radius: 15px;
width: 50px;
height: 50px;
border-color: var(--color-3);
}
@media screen and (max-width: 600px) {
h6{
margin-top: 0;
font-size: 15px;
}
h1{
font-size: 45px;
margin-bottom: 0;
}
}