-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain3.css
94 lines (82 loc) · 1.64 KB
/
main3.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
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
/* body {
background-image: url(./images/undraw_React_re_g3ui-removebg-preview.png);
background-size: contain;
background-repeat: no-repeat;
background-position: center center;
border: solid 3px black;
width: 100%;
height: 100%;
} */
:root {
--light_color: #a8dadc;
--dark-color: #1d3557;
--red-color: #e63946;
--lighter-color: #f1faee;
}
.overlay {
position: fixed;
width: 100%;
height: 100%;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(150,191,2, 0.5);
}
/* nav {
background-color: var(--light_color);
color: var(--dark-color);
}
nav .navs-links ul {
list-style-type: none;
text-decoration: none;
margin-bottom: 0;
}
nav .navs-links ul li {
border: 2px solid black;
padding: 0.5em 0.8em;
}
nav .navs-links ul li a {
text-decoration: none;
color: var(--dark-color);
font-size: 1.1em;
} */
#mobile {
background-image: url(./images/Digital_Nigeria_Banner_2022.jpg);
background-size: cover;
background-repeat: no-repeat;
background-position: top right;
/* position: fixed;
top: 0;
left: 0;
z-index: 20;
height: 100vh;
width: 100%;
overflow: auto; */
}
#mobile .container .heads button {
background-color: transparent;
border: none;
}
#mobile .container .mobile-menu {
margin: 70px 50px;
}
#mobile .container .mobile-menu li a {
font-size: 1.5em;
color: #081c15;
font-weight: 600;
margin-top: 2.4em;
border-bottom: 2px solid #2d6a4f;
}
#mobile .container .mobile-menu .reg-button a {
background-color: #d8f3dc;
border-bottom: none;
font-size: 2.2em;
padding: 1em 1.5em;
border-radius: 10px;
}