-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
90 lines (69 loc) · 1.23 KB
/
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
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
/* =================
WRITE YOUR CSS HERE.
Check the ⌄ for help with formatting and validating your code.
You must write some CSS to complete this challenge.
===================
*/
:root {
--nav-bg-clr: black;
--direction2: column;
--list: none;
}
html,
body {
margin: 0;
height: 100%;
}
.jest-lite-report__status--pass {
background: var(--color-pass);
}
.jest-lite-report__errors { display:none }
h1 {
text-align:center;
font-size: 45px;
font-weight: 600;
}
.c-site-header{
text-align:center;
font-size: 15px;
font-weight: 300;
}
.c-site-footer{
text-align:center;
font-size: 15px;
font-weight: 300;
}
.center {
display: block;
margin-left: auto;
margin-right: auto;
width: 100%;
}
html, body {
font: 1em cursive;
box-sizing: border-box;
background-color: lightblue;
overflow-x: hidden;
}
#nav-bar {
display: flex;
position: fixed;
top: 0;
left: 0;
right: 0;
background-color: var(--nav-bg-clr);
color: ;
}
#nav-bar>ul {
list-style-type: var(--list);
display: flex;
justify-content: space-around;
width: 10%;
}
#nav-bar>ul>li {
flex: 1;
}
#nav-logo {
flex-direction: var(--direction2);
flex: 3;
}