-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathstyle.css
49 lines (40 loc) · 823 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
45
46
47
48
49
@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@500&family=Spline+Sans:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@500&family=Spline+Sans:wght@400;600&display=swap');
* {
font-family: 'Spline Sans', sans-serif;
}
body{
background-color: whitesmoke;
}
h1{
text-align: center;
}
h2, h3{
margin-top: 3em;
}
#copyme{
font-family: 'Inconsolata', monospace;
color: white;
background-color: black;
padding: 1em;
max-width: 20em;
}
textarea{
max-width: 90%;
}
.left{
float: left;
margin-right: 10em;
margin-left: 5em;
}
.right{
overflow: hidden;
}
@media screen and (max-width: 900px) {
.left {
float: none;
margin-right: 0;
margin-left: 0;
width: auto;
}
}