-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylesheet.css
89 lines (78 loc) · 1.45 KB
/
stylesheet.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
@import url('https://fonts.googleapis.com/css2?family=Ubuntu+Mono&display=swap');
body {
background-color: #000000;
background-image: url("images/bg.jpg");
background-attachment: fixed;
background-size: 900p 400p;
font-family: 'Ubuntu Mono', monospace;
font-weight: 400;
color: #FFB000;
}
h1 {
font-family: 'Ubuntu Mono', monospace;
font-weight: 900;
font-size: 60px;
color: #41FF00;
}
a {
font-family: 'Ubuntu Mono', monospace;
font-weight: 500;
color: #FFB000;
}
h2 {
font-family: 'Ubuntu Mono', monospace;
font-weight: 900;
}
.icon {
color: #41FF00;
font-size: 40px;
text-align: right;
}
.button {
background-color: #41FF00;
color: #000000;
padding: 15px 20px;
border-radius: 4px;
margin: 10px 10px 10px 10px;
}
a:hover {
font-family: 'Ubuntu Mono', monospace;
font-weight: 500;
color: #7BDFF2;
text-decoration: none;
}
#profile-pic {
border-radius: 50%;
}
.right-side {
text-align: right;
}
#intro {
margin-top: 460px;
margin-left: 2px;
text-align: left;
width: 780px;
color: #41FF00
}
@media (max-width: 800px) {
/* For a screen < 720px, this CSS will be read */
body {
background-size: 800p 300p;
}
#intro {
margin-top: 380px;
width: 400px;
height: 400px;
}
}
@media (max-width: 540px) {
/* For a screen < 540px, this CSS will be read */
body {
background-size: 600p 200p;
}
#intro {
margin-top: 340px;
width: 300px;
height: 300px;
}
}