-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.css
97 lines (81 loc) · 1.89 KB
/
index.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
body {
font-family:Verdana, Geneva, Tahoma, sans-serif;
margin: 10px;
padding: 10px;
}
#content{
color: black;
background-image: url(Darkpattern.jpg); /* Replace with the actual path to your image */
background-size: cover; /* Adjust as needed (cover, contain, etc.) */
background-repeat: no-repeat; /* Ensure the background doesn't repeat */
height: 100vh; /* Set the height of the container (viewport height) */
display: flex;
}
.navbar{
text-align: left;
left: 20px;
}
.navbar ul {
list-style: none;
padding-left: 2em;
display: inline;
}
.navbar li{
display: inline;
padding-right: 2em;
}
.navbar a {
text-decoration: none;
color: black;
}
.button-container {
position: fixed;
top: 10px; /* Adjust the top distance */
right: 10px; /* Adjust the right distance */
}
.button {
margin-left: 10px; /* Adjust the space between buttons */
padding: 10px 20px;
text-decoration: none;
color: black ;
background-color: rgb(231, 213, 213);
border: none;
border-radius: 20px;
font-size: 15px;
cursor: pointer;
}
.header {
color: black;
text-align: left;
font-weight: bold;
font-size: 45px;
width: fit-content;
padding-left: 0.7em;
}
.header p {
line-height: 0.5;
}
.footer {
color: black;
text-align: left;
padding-left: 2em;
position: fixed;
width: 100%;
margin-bottom: 2em;
word-spacing: 0.5em;
}
.footer button{
border-radius: 2px;
background-color: rgb(246, 169, 14);
color: #080202;
font-size: 15px;
cursor: pointer;
}
button:hover{
background-color: bisque;
transition: background-color 0.8s;
}
.footer button:hover{
background-color: rgb(211, 196, 255);
transition: background-color 0.8s;
}