-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdatabase.css
More file actions
83 lines (75 loc) · 1.5 KB
/
database.css
File metadata and controls
83 lines (75 loc) · 1.5 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
74
75
76
77
78
79
80
81
82
83
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family:Cambria;
}
body{
background:url("background2.jpg");
color:white;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container{
background:#242526;
padding: 50px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
max-width:800px;
border:solid black 5px;
}
.container *{
justify-content:center;
text-align:center;
}
h2{
font-size:40px;
}
.buttons{
margin-top:50px;
}
.buttons *{
justify-content:center;
padding: 10px 20px;
background-color: #007BFF;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
margin: 5px;
}
nav {
background-color: #333;
overflow: hidden;
}
nav a {
float: left;
display: block;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
nav a:hover {
background-color: #ddd;
color: black;
}
/* Make the navigation bar horizontal */
nav {
display: flex;
justify-content: space-between;
}
nav {
position: fixed;
top: 0;
width: 100%;
background-color: #333;
overflow: hidden;
z-index: 1000; /* Ensure it's above other elements */
}
/* Add some padding to the body so content is not hidden behind the fixed navbar */
body {
padding-top: 40px; /* Adjust as needed based on your navbar height */
}