-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
123 lines (121 loc) · 1.84 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
body{
font-family:'Poppins',sanserif;
}
.navbarDark {
backdrop-filter: blur(10px) !important;
color: #ffff !important;
}
nav{
display:flex;
justify-content:space-between;
align-items:center;
text-decoration:none;
position:sticky;
top:0;
width:100%;
}
a{
text-decoration:none;
padding:5px ;
font-size:16px;
color:#fff;
}
ul a{
padding:5px 10px;
border-radius:10px;
}
ul a:hover{
background:#fff;
color:red;
}
.menu{
display:none;
cursor:pointer;
padding:4px;
}
.menu-line{
width:20px;
height:3px;
background:#000;
margin-bottom:3px;
}
@media(max-width:768px){
nav{
flex-direction:column;
position:sticky;
top:0;
width:100%;
}
a{
display:block;
padding:10px 0px;
margin:5px;
width:100%;
}
a:hover{
background:#fff;
color:red;
}
ul{
text-align:center;
padding:0px;
display:none;
}
.logo{
align-self:flex-start;
margin:10px 0px 10px 10px;
}
.menu{
display:block;
position:absolute;
right:20px;
top:30px;
background: #fff;
}
.showmenu{
display:block;
}
.content{
padding:5px !important;
color: #fff;
text-align: center;
height: 100vh;
}
}
.container{
width:100%;
background-image:linear-gradient(95deg, #1c1b1ba1, rgb(0 0 0 / 13%)), url(https://images.pexels.com/photos/2047905/pexels-photo-2047905.jpeg);
background-repeat:no-repeat;
background-size:cover;
background-position:center;
position:relative;
}
.banner{
display:flex;
justify-content:center;
align-items:center;
}
.content{
padding:150px;
color:#fff;
text-align:center;
}
h4{
font-size:22px
}
h1{
font-size:34px
}
.links{
display:flex;
justify-content:center;
align-items:center;
}
button{
border:none;
border-radius:5px;
padding:10px;
margin:4px;
font-weight:bold;
background:5fe5d0
}