-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
69 lines (63 loc) · 1.28 KB
/
styles.css
File metadata and controls
69 lines (63 loc) · 1.28 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
* {
margin: 0rem;
padding: 0rem;
-webkit-box-sizing: inherit;
box-sizing: inherit;
}
html {
font-size: 62.5%;
}
body {
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.bar {
width: auto;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
border-radius: 20px;
background-color: lightgoldenrodyellow;
height: 3vh;
margin: 3rem;
-webkit-box-pack: space-evenly;
-ms-flex-pack: space-evenly;
justify-content: space-evenly;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.bar .container {
background-color: darkblue;
height: 2rem;
width: 2rem;
-webkit-transform: scale(1.8);
transform: scale(1.8);
border-radius: 50%;
-webkit-transition: all 0.5s ease;
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;
-webkit-transition: all 1s ease;
transition: all 1s ease;
pointer-events: none;
}
/*# sourceMappingURL=styles.css.map */