-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
88 lines (77 loc) · 1.29 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
body, h1, h2, h3, p, ul, li {
margin: 0;
padding: 0;
}
body {
font-family: Arial, sans-serif;
line-height: 1.6;
display: flex;
flex-direction: column;
min-height: 100vh;
}
#header {
background-color: #333;
color: white;
padding: 10px;
position: sticky;
top: 0;
z-index: 100;
}
nav {
display: flex;
justify-content: space-between;
}
nav a {
margin:0 10px;
color: white;
text-decoration: none;
}
main {
flex: 1;
max-width: 800px;
margin: 20px auto;
text-align: center;
}
h3 {
color: #333;
font-size: 1.5em;
}
div{
margin: 5%;
}
#infix {
display: flex;
align-items: center;
justify-content: center;
}
#infixInput {
padding: 5px;
width: 200px;
margin:0 5px;
}
button {
background-color: #333;
color: white;
border: none;
padding: 8px 16px;
cursor: pointer;
border-radius: 4px;
}
button:hover {
background-color: #555;
}
/* Footer styles */
footer {
background-color: #333;
color: white;
padding: 10px;
text-align: center;
position: sticky;
bottom: 0;
z-index: 100;
}
#name {
font-weight: bold;
text-decoration: none;
color: #fff;
}