-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
71 lines (64 loc) · 1.14 KB
/
Copy pathindex.css
File metadata and controls
71 lines (64 loc) · 1.14 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
* {
text-decoration: none;
/* list-style: none; */
color: rgba(234, 240, 246, 0.8);
}
body {
background: #33475B;
padding: 2px;
}
.colon:after {
content: ":";
}
.nav-header {
display: flex;
border: 1px solid green;
justify-content:space-evenly;
align-items: center;
margin: 10px;
padding: 10px;;
font-size: 20px;
}
.nav-header li, .nav-header ul{
display: flex;
gap: 10px;
margin: 0;
padding: 0;
/* border: 1px solid green; */
}
.left-nav {
/* border: 1px solid blue; */
padding: 5px;
}
.left-nav:hover, .right-nav a:hover, .right-nav:hover, .right-nav li:hover {
cursor: cell;
}
#time {
cursor: auto;
}
#javascriptCode {
background: transparent;
height: auto;
}
#javascriptCode:hover {
background: #452c2c;
}
.headerThree {
display: flex;
align-items: baseline;
gap: 4px;
}
.pink-text {
color:pink;
font-weight: bold;
background:rgba(234, 240, 246, 0.1);
}
@media screen and (max-width: 600px) {
.nav-header {
flex-direction: column;
font-size: 15px;
}
#javascriptCode {
word-wrap: break-word;
}
}