-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
58 lines (48 loc) · 898 Bytes
/
styles.css
File metadata and controls
58 lines (48 loc) · 898 Bytes
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
/* SETTING BASE STYLES */
html{
scroll-behavior: smooth;
}
body {
font-family: 'IBM Plex Mono', monospace;
margin: 0;
padding: 0;
}
fieldset {
border: solid black ;
box-shadow: 0.5rem 0.5rem aqua;
margin: 20px;
padding: 10px;
}
/* NAV */
#nav-bar {
display: flex;
justify-content: space-around;
padding: 10px;
margin: 20px;
border: solid black;
box-shadow: 0.5rem 0.5rem aqua;
}
#nav-bar nav ul{
list-style: none;
display: flex;
}
#nav-bar nav ul a {
padding: 10px;
margin: 5px;
color: black;
border-style: solid;
border-color: black;
text-decoration: none;
box-shadow: 0.25rem 0.25rem aqua;
}
#nav-bar nav ul a:hover{
background-color: aqua;
transition: 0.6s;
box-shadow: 0.25rem 0.25rem black
}
/* SECTIONS */
/* GEOMETRY */
#geometry {
display: flex;
flex-wrap: nowrap;
}