-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
128 lines (104 loc) · 1.73 KB
/
Copy pathstyles.css
File metadata and controls
128 lines (104 loc) · 1.73 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
@import url("https://fonts.googleapis.com/css?family=Montserrat&display=swap");
@import url("https://fonts.googleapis.com/css?family=Varela+Round&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Montserrat", sans-serif;
}
body {
text-align: center;
}
#container {
width: 100vw;
height: 100vh;
display: flex;
flex-direction: row;
justify-content: space-around;
align-items: center;
max-height: 100vh;
overflow: hidden;
}
#container object {
width: 80%;
height: 80%;
margin: 3%;
}
#goals {
display: none;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 5px;
max-width: 30%;
margin: 3%;
margin-left: 0;
height: 60vh;
width: 50vw;
background: #fff;
box-shadow: 0 15px 25px rgba(0, 0, 0, 0.5);
border-radius: 20px;
}
#timer span {
font-size: 35px;
font-weight: bold;
font-family: "Varela Round", sans-serif;
}
#phrases {
display: flex;
flex-direction: row;
justify-content: center;
margin: auto;
}
#phrase {
width: 22vw;
}
#phrase span {
font-size: 16px;
}
.arrow {
margin: auto;
cursor: pointer;
width: 40px;
height: 40px;
}
.right {
transform: rotate(180deg);
}
#create-goal {
margin-bottom: 5%;
width: 50%;
height: 50px;
border-radius: 50px;
background: #fff;
border: 2px solid #6c63ff;
font-size: 16px;
color: #6c63ff;
transition: 0.5s;
cursor: pointer;
}
#create-goal:hover {
background: #6c63ff;
color: #fff;
transition: 0.5s;
}
.goals-animation {
position: relative;
animation: frombottom 1s;
}
@keyframes frombottom {
from {
bottom: -100px;
}
to {
bottom: 0;
}
}
@keyframes fromright {
from {
right: 0px;
}
to {
right: 226px;
}
}