-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
86 lines (71 loc) · 1.09 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
html {
scroll-behavior: smooth;
}
body {
font-family: "Courier New", Courier, monospace;
background: linear-gradient(
90deg,
hsla(162, 12%, 44%, 1) 13%,
hsla(163, 20%, 59%, 1) 77%
);
color: white;
}
@font-face {
font-family: "Famulred";
src: url("fonts/Famulred.otf");
}
.container {
margin: 0px 10vw;
}
.banner {
padding: 6rem 0rem;
}
.banner-name {
font-family: Famulred;
font-size: 6rem;
}
.banner-title {
margin: 6rem 0px;
}
.banner-title-1,
.banner-title-2 {
font-size: 40px;
font-weight: bold;
text-shadow: 10px 1px 1px #4c665e;
transform: rotate(2deg);
margin: 2rem 0rem;
}
.banner-title-2 {
background-color: #c69774;
}
.terminal {
background-color: black;
color: white;
border-radius: 10px;
padding: 10px;
font-size: 18px;
}
@media only screen and (min-width: 600px) {
.terminal {
font-size: 2rem;
}
.banner-title-1,
.banner-title-2 {
font-size: 6rem;
}
}
.color-green {
color: green;
}
.color-blue {
color: blue;
}
.color-yellow {
color: yellow;
}
.color-pink {
color: pink;
}
.color-brown {
color: brown;
}