-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
103 lines (103 loc) · 1.52 KB
/
styles.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
body,html {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
overflow-x: hidden;
}
.container {
width: 100%;
height: 250px;
overflow-x: scroll;
overflow-y: hidden;
}
canvas {
/*width: 800px;
height: 240px;*/
border: 1px solid #000000;
background-color: beige;
}
#map {
width: 100%;
height: 400px;
}
.navigation {
background-color: darkblue;
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px;
color: white;
}
.logo {
text-align: left;
}
.logo img {
height: 80px;
}
.title {
text-align: center;
}
.author {
text-align: right;
}
.author img {
height: 80px;
}
td {
border: none;
font-size: 14px;
padding: 3px;
}
.calendar {
border-collapse: collapse;
width: 100%;
table-layout:fixed;
border: 2px solid blue;
background-color: beige;
}
.calendar th {
border: 1px solid gray;
font-size: 14px;
text-align: center;
padding: 2px;
}
.calendar td {
border: 1px solid gray;
font-size: 12px;
vertical-align: top;
text-align: center;
padding: 0px;
}
.calendar thead {
background-color: darkblue;
color: #fff000;
}
.calendar .hightide {
font-size: 7px;
color: green;
}
.calendar .lowtide {
font-size: 7px;
color: brown;
}
.calendar .today {
font-weight: bold;
color: red;
}
.content {
background-color: darkgreen;
padding: 20px;
color: white;
min-height: 80vh;
}
.content h2 {
text-align: center;
}
form {
text-align: center;
margin-top: 20px;
}
button {
font-size: 24px;
padding: 10px 20px;
}