forked from r4gesingh47/Hackathon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.css
More file actions
77 lines (70 loc) · 1.49 KB
/
about.css
File metadata and controls
77 lines (70 loc) · 1.49 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
@import url('https://fonts.googleapis.com/css2?family=Yanone+Kaffeesatz:wght@500&display=swap');
:root {
--main-bg-color:#FCECDD;
--div-bg-color:#FFC288;
--div-elements-color:#FEA82F;
--navbar-bg-color:#FF6701;
}
*{
box-sizing:border-box;
margin:0;
padding:0;
font-family: 'Yanone Kaffeesatz', sans-serif,monospace;
padding:0.1rem;
}
li{
list-style: none;
font-weight: bold;
}
a{
text-decoration: none;
color:white;
}
body{
background: var(--main-bg-color);
}
.homePage{
display:flex;
flex-direction: column;
width: 100%;
height: 100vh;
}
/*Navbar*/
.navbar{
display: flex;
flex-direction: row;
width: 100%;
border-radius: 11px;
align-items: center;
justify-content: space-between;
/* background: linear-gradient(5deg, #ffffff, #ffd9cb, #ffb299, #ff8969, #ff5b3a, #ff0000); */
background: var(--navbar-bg-color);
-webkit-box-shadow: 0px 7px 30px 0px rgba(255, 255, 255, 0.77);
-moz-box-shadow: 0px 7px 30px 0px rgba(253, 253, 253, 0.77);
box-shadow: 0px 7px 30px 0px rgba(241, 255, 255, 0.77);
}
.logo{
width:10%;
height: auto;
margin-top:-1rem;
}
.menus{
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
width:55%;
display: flex;
flex-direction:row;
justify-content: space-between;
}
.profile{
width: 20%;
display: flex;
flex-direction:row;
justify-content: space-between;
font-weight: bold;
}
.about{
text-align: center;
}