-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
150 lines (121 loc) · 2.98 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
@import url('https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('./style/effects.css');
@import url('./style/app-container.css');
@import url('./style/navigation.css');
@import url('./style/solution-explorer.css');
@import url('./style/footer.css');
@import url('./resume/styles/main.css');
@import url('./style/console-container.css');
@import url('./style/projects.css');
@import url('./style/certificates.css');
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
width: 90%;
height: auto;
margin: 0 auto;
background-color: #1F1F1F;
border: 1px #4e4d4d solid;
}
html {
font: 18px/1.5 "Space Mono";
scroll-behavior: smooth;
scrollbar-width: none; /* Hides scrollbar in Firefox */
}
html::-webkit-scrollbar {
display: none; /* Hides scrollbar */
}
.buttons-container{
margin-left: 3em;
margin-right: -1em;
}
.main-container {
display: flex;
flex-direction: column;
background-color: #1F1F1F;
padding-top: 0.5em;
padding-left: 0.3em;
}
.bottom-container{
font-size: 13px;
font-weight: 600;
display: flex;
flex-direction: row;
border-top: 1px #4e4d4d solid;
border-bottom: 1px #4e4d4d solid;
z-index: 300;
}
.go-to-start-button {
display: inline-block;
font-family: "Montserrat", sans-serif;
font-weight: 700;
margin-bottom: 2em;
margin-left: 5em;
margin-right: -3em;
width: 5em;
height: 3em;
border-radius: 0.9em;
background-color: #307de2;
box-shadow: 0px -23px 25px 0px rgba(0, 0, 0, 0.17)
inset, 0px -36px 30px 0px rgba(0, 0, 0, 0.15)
inset, 0px -79px 40px 0px rgba(0, 0, 0, 0.1)
inset, 0px 2px 1px rgba(0, 0, 0, 0.06), 0px 4px 2px rgba(0, 0, 0, 0.09), 0px 8px 4px rgba(0, 0, 0, 0.09), 0px 16px 8px rgba(0, 0, 0, 0.09);
}
.counter {
display: flex;
justify-content: center;
}
.alert {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: #bebebe;
border: 2px solid #7160E8;
padding: 1em;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
z-index: 1000;
text-align: center; /* center the elements inside the div */
display: none;
}
#alertMessage {
display: block;
margin-bottom: 10px;
font-size: 1em;
}
#closeAlertButton {
background-color: #000000;
color: #ffffff;
border: 1px solid #7160E8;
padding: 0.5em 1em;
cursor: pointer;
}
#customAlertPicture{
scale: 80%;
margin-bottom: 10px;
}
#minimized-window{
border: 0.15em black solid;
border-bottom: solid #7160E8;
background-color: #2E2E2E;
width: 20em;
height: 3em;
padding: 0 0.5em 0 0.50em;
margin: 2em 0 5em 1em;
align-self: center;
text-align: center;
display: none;
}
.minimized{
display: none;
}
#minimized-window a{
text-decoration: none;
color: #4EC9B0;
}
#minimized-window:hover{
background-color: #3D3D3D;
}