-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
155 lines (130 loc) · 2.07 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
* {
margin: 5px 5px;
font-family: 'Lato', sans-serif;
text-decoration: none;
}
#nav-bar {
border: 2px solid black;
margin: 12px 0;
padding: 5px 12px;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
}
.menu-list {
display: flex;
margin-right: 1.5%;
margin-left: 1.5%;
font-size: 1.3rem;
font-weight: bold;
list-style: none;
}
.menu-list li a {
color: #000;
}
.menu-list li a:hover {
color: rgb(80, 207, 253);
}
.line {
height: 30px;
width: 1px;
background-color: black;
border: solid 1px black;
}
#header {
display: flex;
flex-direction: column;
align-self: flex-end;
margin-left: 1.5%;
margin-right: 1.5%;
}
h1,
h3 {
text-align: center;
padding-top: 24px;
margin-bottom: 24px;
}
.list-container {
border: solid 2px black;
display: flex;
flex-direction: column;
margin-left: 1.5%;
margin-right: 1.5%;
}
li {
display: flex;
justify-content: space-between;
}
button {
align-self: flex-end;
box-shadow: 3px 3px;
}
.contact-list li {
align-self: center;
}
.list-container li:nth-child(odd) {
background-color: #c2d3ef;
}
.separation-line {
display: flex;
flex-direction: row;
justify-content: center;
width: 15%;
border: solid 2px black;
margin-left: 42.5%;
margin-top: 36px;
}
.input-container {
margin-left: 35%;
margin-right: 35%;
display: flex;
flex-direction: column;
}
.inputs {
width: 100%;
border: solid 2px black;
padding: 5px;
}
.button {
display: flex;
justify-content: flex-end;
}
#contact-section {
text-align: center;
}
#contact-section p,
#contact-section ul {
margin-bottom: 12px;
}
.contact-list {
display: flex;
flex-direction: column;
justify-content: center;
}
.hidden {
display: none;
}
.active {
display: block;
}
#date {
text-align: right;
}
#div-list h2 {
text-align: center;
margin-bottom: 25px;
}
.copyright {
position: absolute;
top: 90%;
width: 90%;
margin-left: 1.5%;
margin-right: 1.5%;
border: 2px solid black;
}
@media (min-width: 768px) {
.copyright {
padding-left: 50px;
}
}