-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle2.css
More file actions
42 lines (42 loc) · 826 Bytes
/
Copy pathstyle2.css
File metadata and controls
42 lines (42 loc) · 826 Bytes
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
:root{
--size: 3.25vh;
}
body{
background-color: rgb(14, 14, 37);
font-family: Montserrat;
font-size: var(--size);
color: rgb(235, 231, 231);
display: flex;
width:100%;
height: 100vh;
justify-content: center;
align-items: center;
margin: 0;
}
.widget{
font-family: Montserrat;
border-color: rgb(71, 71, 133);
border-radius: 3em;
border-width: 1.8px;
color: rgb(235, 231, 231);
background-color: rgb(23, 23, 60);
padding: 0.5em;
width: 30vw;
font-size: 2.25vh;
margin-top: 0.5em;
margin-bottom: 1em;
text-align: center;
}
div{
width: 100%;
}
span{
display: flex;
justify-content: center;
padding: 0em;
}
#answer{
position: relative;
top: 0.5em;
font-size: 2.5vh;
}