-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle2.css
More file actions
73 lines (65 loc) · 1.29 KB
/
style2.css
File metadata and controls
73 lines (65 loc) · 1.29 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
/* google fonts
- montserrat
- bebasneue
- alfaslab
*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap");
/* global css */
* {
margin: 0;
padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
input,
button {
font-family: "Open Sans", sans-serif;
}
a,
a:hover {
text-decoration: none;
}
/**********************************
header part css here
***********************************/
body {
background: url(https://c4.wallpaperflare.com/wallpaper/24/23/796/portrait-display-vertical-pattern-digital-art-wallpaper-preview.jpg);
background-size: cover;
/* background: rgb(76, 255, 28);
background: radial-gradient(
circle,
rgba(76, 255, 28, 0.39957981483609073) 0%,
rgba(219, 255, 40, 0.39677869438791147) 50%,
rgba(113, 255, 131, 0.40238093528427) 100%
); */
}
.navbar {
padding: 25px 0;
}
.nav-link {
color: rgb(0, 0, 0) !important;
font-size: 18px;
font-weight: 500;
margin-left: 40px;
}
.nav-link:hover {
scale: 1.1;
transition: 0.5s;
text-decoration: underline;
}
#s-out:hover {
border: 1px solid white;
transition: 0.5s;
background-color: rgba(255, 0, 0, 0.5);
}
.navbar-brand {
color: rgb(81, 105, 43) !important;
font-weight: 600;
font-size: 24px;
}