-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
44 lines (40 loc) · 824 Bytes
/
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
body {
margin: 0;
min-height: 100vh;
background-color: rgb(226, 197, 177);
display: flex;
justify-content: center;
align-items: center;
background-image: url(mountains1.jpg);
}
nav {
position: fixed;
left: 1rem;
top: -5px;
background-color: #eee;
border: 1px solid #999;
border-radius: 5px;
border-width: 0 1px 1px 1px;
padding: .5rem;
}
nav a:hover {
background-color: #ddd;
padding: .5rem 0;
color: #333;
}
div {
min-height: 50vh;
width: 50vh;
background-color: transparent;
border: 10px solid rgba(255, 0, 0, .5);
border-radius: 50%;
box-shadow: 0 0 0 1000px #f00;
box-sizing: border-box;
text-align: center;
padding: 1rem;
}
p {
font-family: sans-serif;
font-size: 1.5rem;
text-shadow: 1px 1px 5px cornsilk
}