-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.scss
More file actions
56 lines (51 loc) · 978 Bytes
/
styles.scss
File metadata and controls
56 lines (51 loc) · 978 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
*{
margin: 0rem;
padding: 0rem;
box-sizing: inherit;
}
html{
font-size: 62.5%;
}
body{
box-sizing: border-box;
}
.bar{
width: auto;
display: flex;
border-radius: 20px;
background-color: lightgoldenrodyellow;
height: 3vh;
margin: 3rem;
justify-content: space-evenly;
align-items: center;
.container{
background-color: darkblue;
height: 2rem;
width: 2rem;
transform: scale(1.8);
border-radius: 50%;
transition: all 0.5s ease;
}
}
button{
font-size: 2rem;
padding: 1rem;
margin: 1rem;
margin-left: 3rem;
border-radius: 20px;
background-color: lightblue;
cursor: pointer;
}
.message{
display: block;
text-align: center;
font-size: 1.5rem;
padding: 0.5em;
margin-top: 1rem;
font-family: cursive;
letter-spacing: 0.1em;
font-weight: bold;
opacity: 0;
transition: all 1s ease;
pointer-events: none;
}