-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
93 lines (82 loc) · 1.49 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
:root {
--primary: #141414;
--colourful: #01628f;
--font-color:#c7c7c7;
--special:#B30909;
--full-width:calc(100vw - 21px);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
::-webkit-scrollbar {
width: 7px;
}
::-webkit-scrollbar-thumb {
background: var(--special);
}
::-webkit-scrollbar-thumb:hover {
background: var(--font-color);
}
::-moz-selection {
background: var(--colourful);
}
::selection {
background: var(--colourful);
}
body, html {
width: calc(100vw - 7px);
font-family: Arial, Helvetica, sans-serif;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
overflow-x: hidden;
background: var(--primary);
color: var(--font-color);
font-size: 1em;
}
body a, html a {
color: var(--colourful);
}
.main-screen {
display: flex;
align-items: center;
justify-content: center;
width: 90vw;
height: 100vh;
text-align: center;
}
.contactme {
width: 100vw;
padding: 20px;
color: var(--primary);
background-color: var(--font-color);
text-align: center;
}
.contactme h4 {
padding: 20px 0;
}
.contactme .copyright {
padding-top: 20px;
}
.contactme .copyright h6 {
background: var(--primary);
color: var(--font-color);
padding: 5px 0;
}
.dontfound-screen {
height: 100vh;
width: 100vw;
padding: 50px;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
gap: 50px;
}
span {
color: rgb(179, 9, 9);
}/*# sourceMappingURL=style.css.map */