-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
123 lines (101 loc) · 1.67 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
/* =================
WRITE YOUR CSS HERE.
Check the ⌄ for help with formatting and validating your code.
You must write some CSS to complete this challenge.
===================
*/
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@100&display=swap');
html,
body {
margin: 0;
height: 100%;
background-color: #696969;
color: black;
padding: 1.5em;
font-family: Josefin+Sans:
}
.c-site-header {
background-color: gray;
color: Orange;
padding: 50px;
margin: 10px 0px 0px 10px;
}
.c-site-links{
background-color: gray;
text-align: center;
color: black;
padding: 20px;
margin: 5px 10px 0px 10px;
}
a {
color: black;
}
a:hover {
color: orange;
}
h1{
color: Orange;
text-align: center;
opacity: 0.6;
font-style: italic;
}
h2{
color: Orange;
text-align: center;
opacity: 0.9;
margin: 5%;
padding: 1px;
}
div{
background-color: gray;
color: black;
padding: 50px;
margin: 10px 0px 0px 10px;
display: flex-start;
}
p {
color: black;
text-align: left;
opacity: 0.8;
margin: 5%;
padding: 1px;
font-family: Josefin;
}
ul{
color: black;
text-align: left;
opacity: 0.8;
margin: 5%;
padding: 10px;
}
.img{
max-width: 100%;
height: auto;
}
.video{
display: flex;
flex-direction: column;
align-items: center;
}
.iframe-self {
position: absolute;
top: 0px;
left: 0;
width: 100%;
height: 100%;
}
footer {
opacity: 0.8;
margin: 1%;
padding: 1px;
}
@media only screen and (max-width: 600px) {
body {
background-color: gray;
}
}
/* don't edit this */
.jest-lite-report__status--pass {
background: var(--color-pass);
}
.jest-lite-report__errors { display:none }