-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
43 lines (39 loc) · 1.11 KB
/
index.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
@import url('https://fonts.googleapis.com/css2?family=Nanum+Pen+Script&family=Rubik+Doodle+Shadow&display=swap');
@tailwind base;
@tailwind components;
@tailwind utilities;
body{
/* background-image: url("https://images.pexels.com/photos/5717479/pexels-photo-5717479.jpeg?cs=srgb&dl=pexels-polina-kovaleva-5717479.jpg&fm=jpg");
background-size: cover;
background-repeat: no-repeat;
height:100vh;
width: 100vw; */
}
.bgfixed{
background-image: url("https://images.pexels.com/photos/5717479/pexels-photo-5717479.jpeg?cs=srgb&dl=pexels-polina-kovaleva-5717479.jpg&fm=jpg");
background-size: cover;
background-repeat: no-repeat;
height:100vh;
width: 100vw;
position: fixed;
z-index: -1;
top: 0;
}
.alert-box {
padding: 15px;
margin-bottom: 20px;
border: 1px solid transparent;
border-radius: 4px;
}
.success {
color: #3c763d;
background-color: #dff0d8;
border-color: #d6e9c6;
display: none;
}
.failure {
color: #a94442;
background-color: #f2dede;
border-color: #ebccd1;
display: none;
}