-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathskills.css
109 lines (97 loc) · 2.23 KB
/
skills.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
body, html {
height: 100%;
margin: 0;
padding: 0;
}
@font-face {
font-family: 'codey';
src: url("Pixelify_Sans/PixelifySans-VariableFont_wght.ttf") format('woff2');
}
:root {
--primary-colour: #000000;
--secondary-colour: #ffffff;
--right-col-colour: #838383;
}
.light-theme {
--primary-colour: #ffffff;
--secondary-colour: #000000;
--right-col-colour: #d3d3d3;
}
#mode {
margin-right: 1.042vw;
color: #ffffff;
position: absolute;
top: 1.389vh;
left: 1.042vw;
cursor: pointer;
width: 2.083vw;
height: 2.083vw;
}
.container {
display: flex;
flex-direction: column;
height: 100vh;
background-color: var(--primary-colour);
font-family: 'codey','Courier New', Courier, monospace;
color: var(--secondary-colour);
}
.content {
flex: 5;
display: flex;
font-family: 'codey','Courier New', Courier, monospace;
color: var(--secondary-colour);
margin-left: 2.604vw;
margin-right: 2.604vw;
line-height: 3.778vh;
font-size: 1.389vw;
}
#skill-header {
flex: 1;
font-size: 4.646vw;
font-weight: 100;
margin-left: 2.604vw;
margin-right: 83.406vw;
padding-left: 0.578vw;
padding-right: 0.578vw;
border-color: var(--secondary-colour);
border-style: double;
height: 8.333vh;
border-width: 0.463vh;
overflow: hidden;
border-radius: 2.778vw;
}
.col1 {
flex: 1;
color: var(--secondary-colour);
font-family: 'codey','Courier New', Courier, monospace;
border-color: var(--secondary-colour);
margin-right: 1.389vw;
line-height: 7vh;
font-size: 2.8vh;;
}
#col2 {
flex: 0.05;
}
#peach {
font-family: 'codey', 'Courier New', Courier, monospace;
position: absolute;
bottom: 1.852vh;
right: 1.852vw;
padding: 0.578vw 1.156vw;
font-size: 0.926vw;
background-color: rgb(208, 96, 223);
color: var(--secondary-colour);
border: none;
cursor: pointer;
border-radius: 1vh;
}
#peach:hover {
background-color: #d000ff;
}
.peachPic {
display: flex;
width: 1.389vw;
height: 1.389vw;
margin: 0.694vw;
margin-top: 1.852vh;
}