-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
61 lines (60 loc) · 1.7 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
@import url('https://fonts.googleapis.com/css2?family=Inria+Sans:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inria+Sans:wght@300&family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inria+Sans:wght@300&family=Poppins&family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');
body{
background-color: #FFCC00;
background-size: 400% 400%;
margin: 0;
padding: 0;
box-sizing: border-box;
justify-content: center;
display: flex;
align-content: flex-start;
flex-wrap: wrap;
}
.header{
background-color: #0A0019;
width: 100%;
height: 75px;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0px 10px 0px 10px;
position: fixed;
}
.logo-container{
background-position: center;
background-repeat: no-repeat;
background-size: cover;
background-image: url("/images/Logo.png");
width: 100px;
height: 100%;
}
.login-button{
width: 100px;
height: 50%;
border-radius: 50px;
background-color: #D9D9D9;
font-family: 'Poppins', sans-serif;
display: flex;
align-items: center;
justify-content: center;
}
.first-page{
flex: 1;
display: flex;
height: 100vh;
}
.main-body-content-1 {
flex-grow: 1; /* This makes it take up the remaining space */
width: 100%;
box-sizing: border-box; /* Ensures padding and border are included in the width */
padding: 10px; /* Add padding if needed */
}
.logo-text-container{
background-position: center;
background-repeat: no-repeat;
background-size: cover;
background-image: url("/images/text-only.png");
}