This repository was archived by the owner on Aug 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
113 lines (97 loc) · 1.59 KB
/
style.css
File metadata and controls
113 lines (97 loc) · 1.59 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
html, body {
margin: 0;
padding: 0;
}
canvas {
display: block;
margin: auto;
}
button {
display: inline-grid;
margin-block: inherit;
transform: translate(0%, 250%);
}
header img {
height: 80px;
}
body {
height: 100%;
background-image: url('images/underwater.jpg');
background-size: cover;
background-repeat: no-repeat;
font-family: sans-serif;
margin-top: 80px;
padding: 0px;
}
header {
background-color: rgb(255, 255, 255);
position: absolute;
top: 0;
left: 0;
right: 0;
height: 80px;
display: block;
align-items: center;
margin-left: auto;
margin-right: auto;
box-shadow: 0 0 25px 0 black;
}
header * {
display: flex;
}
header nav {
display: inherit;
}
header ul {
float: inline-start;
position: relative;
left: 50%;
transform: translate(-50%, -121%);
}
header li {
margin: 15px;
}
header li a {
color: black;
text-decoration: none;
font-size: 1.25em;
}
main {
color: rgb(255, 255, 255);
text-shadow: 2px 2px black;
padding: 75px 30%;
}
#mainArea {
padding: 0 40px;
}
main ul {
list-style-type: none;
position: relative;
display: flex;
float: none;
}
main li {
margin: 20px;
}
.button {
background-color: #4CAF50; /* Green */
border: none;
color: white;
padding: 15px 32px;
border-radius: 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
}
.sketch {
background-color: #ed782f; /* Orange */
border: none;
color: white;
padding: 30px 64px;
border-radius: 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 24px;
}