-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
108 lines (104 loc) · 2.09 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
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@500&family=Pacifico&display=swap');
/* *{
margin: 0;
padding: 0;
font-family: Georgia, 'Times New Roman', Times, serif;
box-sizing: border-box;
}
body{
background-image: url(R\ \(1\).jpg);
height: 100vh;
background-position: center;
background-size: cover;
} */
*{
font-family: poppins;
margin: 0px;
padding: 0px;
box-sizing: border-box;
scroll-behavior: smooth;
}
ul{
list-style: none;
}
a{
text-decoration: none;
}
body{
margin: 0px;
padding: 0px;
font-family: poppins;
}
::selection{
color:#ffffff;
background-color:#40aa54;}
header{
width: 100%;
height: 75px;
display: flex;
justify-items: center;
align-items: center;
padding: 30px 0%;
background: rgba(0,0,0,0.2);
justify-content:space-evenly;
}
/* .logo {
font-family: "MyCursiveFont", cursive; /* Use the font-family you specified in @font-face, followed by a fallback cursive font. */
/* font-size: 15px;
font-weight: bold;
color: rgb(164, 223, 209);
letter-spacing: 1px;
cursor: pointer;
padding-left: 0%;
} */
.logo{
font-size: 1.4rem;
font-weight: 600;
letter-spacing: 1px;
color: #1d1b1b;
}
.logo span{
color:#40aa54;
}
/* .logo{
font-family: cursive;
font-size: 10px;
font-weight: bold;
color: whitesmoke ;
letter-spacing: 1px;
cursor: pointer;
padding-left: 0%;
} */
/* @font-face {
font-family: 'CustomFont';
src: url('path/to/your-custom-font.ttf') format('truetype');
}
.logo {
font-family: Copperplate, Papyrus, fantasy;
} */
nav li{
display: inline;
list-style: none;
padding: 0px 20px;
}
a,button{
font-size: 16px;
font-weight: 500;
color: #202020;
text-decoration: none;
cursor: pointer;
}
button{
background: rgba(0,0,0,0.2);
border: 2px solid #40aa54;
border-radius: 50px;
padding: 9px 25px;
}
nav li a:hover{
color: #40aa54;
transition: all 0.3s ease 0s;
}
button:hover{
background-color: #40aa54;
transition: all 0.3s ease 0s;
}