-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
115 lines (101 loc) · 1.78 KB
/
styles.css
File metadata and controls
115 lines (101 loc) · 1.78 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
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
109
110
111
112
113
114
115
html {
height: 100%;
}
body {
background-color: white;
position: relative;
min-height: 100vh;
padding: 0;
margin: 0;
}
main {
padding: 0 20px 40px 20px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.navbar {
position: -webkit-sticky;
position: sticky;
top: 0;
width: 100%;
height: 9%;
z-index: 10;
display: flex;
justify-content: space-between;
align-items: center;
text-align: center;
background-color: rgb(3, 36, 3);
color: white;
padding: 0px 0px;
}
.nav-list {
display: flex;
flex-direction: row;
position: relative;
right: 30px;
list-style: none;
}
.navbar a {
color: white;
font-weight: bold;
margin: 0 12px;
text-decoration: none;
letter-spacing: 1px;
font-family: Georgia, "Times New Roman", Times, serif;
}
.navbar a:hover {
color: rgb(168, 167, 167);
text-decoration: underline;
}
/*index.html page*/
.about {
display: flex;
align-items: center;
justify-content: space-between;
background-color: rgb(168, 177, 120);
border: 1px outset rgb(6, 43, 17);
border-radius: 5px;
border-width: 3px;
}
.about-text {
flex: 1;
margin-left: 20px;
margin-right: 20px;
}
/*contact.html page*/
label {
display: block;
margin-bottom: 5px;
font-weight: bold;
}
input[type="text"],
input[type="email"],
textarea {
width: 95%;
padding: 7px;
margin-bottom: 15px;
border: 2px double #98bea2;
border-radius: 5px;
font-size: 16px;
}
/*unvisited and visited links*/
a:link {
color: rgb(79, 138, 79);
text-decoration: underline;
}
a:visited {
color: rgb(181, 202, 146);
}
.footer {
display: flex;
justify-content: center;
align-items: center;
background-color: black;
color: white;
position: absolute;
bottom: 0;
width: 100%;
height: 2.5rem;
}