This repository has been archived by the owner on Aug 2, 2023. It is now read-only.
generated from alchemycodelab/web-01-todo-supabase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
127 lines (106 loc) · 2.41 KB
/
style.css
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
body {
/* https://coolors.co/generate and click export -> scss to get the colors to copy and paste below*/
/* --color1: hsla(349, 69%, 76%, 1);
--color2: hsla(207, 67%, 44%, 1);
--color3: hsla(200, 61%, 56%, 1);
--color4: hsla(187, 41%, 94%, 1);
--color5: hsla(170, 28%, 95%, 1); */
/* --color1: hsla(45, 86%, 83%, 1);
--color2: hsla(135, 65%, 98%, 1);
--color3: hsla(315, 37%, 86%, 1);
--color4: hsla(45, 73%, 98%, 1);
--color5: hsla(224, 40%, 79%, 1); */
--header-height: 80px;
--shadow: 0px 10px 20px -12px rgba(0, 0, 0, 0.45);
--gutter: 30px;
--footer-height: 25px;
font-family: 'Titillium Web', sans-serif;
background-color: var(--color2);
}
main {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin-bottom: calc(var(--footer-height));
}
section {
background-color: var(--color5);
width: 1000px;
max-width: 80%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding-top: var(--gutter);
padding-bottom: var(--gutter);
margin-top: var(--gutter);
margin-bottom: var(--gutter);
border: solid 2px var(--color1);
}
header {
display: flex;
justify-content: flex-end;
background-color: var(--color3);
height: var(--header-height);
box-shadow: var(--shadow);
}
h2 {
font-size: 1.8rem;
font-weight: bold;
}
.gutter-right {
margin-right: 20px;
}
.main-logo {
animation: pulse 5s infinite ease-in-out;
}
header img {
height: var(--header-height);
}
p {
margin: var(--gutter);
}
footer {
position: fixed;
width: 100%;
bottom: 0;
height: var(--footer-height);
display: flex;
justify-content: flex-end;
background-color: var(--color3);
box-shadow: var(--shadow);
}
@keyframes pulse {
20% {
transform: rotate3d(-10, -10, -10, 50deg) scale(1.2);
}
40% {
transform: rotate3d(10, 10, -10, 50deg) scale(1);
}
60% {
transform: rotate3d(-10, 10, 10, 50deg) scale(1.2);
}
80% {
transform: rotate3d(10, 10, 10, 50deg) scale(1);
}
}
#logout {
position: fixed;
right: 20px;
top: 90px;
}
.auth-main {
display: flex;
flex-direction: row;
}
.auth-container {
margin: 10px;
}
.auth-container form {
display: flex;
flex-direction: column;
}
.auth-container button {
margin: 10px;
}