-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
styles.css
117 lines (105 loc) · 2.2 KB
/
styles.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
html,
body {
min-height: max(100%, 100vh);
}
body {
font-family: 'Poppins', sans-serif;
margin: 0;
padding: 0;
transition: background-color 0.3s ease;
color: #fff;
background: #000;
}
.nav-container {
display: flex;
align-items: center;
justify-content: space-between;
padding: 10px 20px;
color: #fff;
}
.nav-menu {
list-style-type: none;
margin: 0;
padding: 0;
}
.nav-menu li {
display: inline;
margin-right: 20px;
text-decoration: none;
color: #fff;
cursor: pointer;
}
.nav-menu li a {
text-decoration: none;
color: #fff;
}
.wallpaper {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url('https://raw.githubusercontent.com/Mistium/Origin-OS/main/Wallpapers/originOS%20Dawn.png') no-repeat center center/cover;
z-index: -1;
user-select: none; /* Disable text selection */
-webkit-user-drag: none; /* Disable image dragging in WebKit browsers */
-moz-user-drag: none; /* Disable image dragging in Firefox */
-ms-user-drag: none; /* Disable image dragging in Internet Explorer */
}
.terminal_window {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 700px;
height: 500px;
background: rgba(0, 0, 0, 0.6);
border-radius: 10px;
overflow: hidden;
backdrop-filter: blur(10px);
}
.terminal_titlebar {
display: flex;
align-items: center;
margin: 0px;
height: 50px;
background: rgba(0, 0, 0, 0.3);
}
.terminal_title {
margin: 0;
padding: 0;
font-size: 1.2em;
color: #fff;
margin-left: 10px;
user-select: none; /* Disable text selection */
}
.terminal_input {
display: flex;
align-items: center;
position: absolute;
bottom: 0;
width: 100%;
height: 50px;
background: rgba(0, 0, 0, 0.3);
color: #fff;
font-family: 'Poppins', sans-serif;
font-size: 1em;
}
.prompt {
color: #fff;
font-family: 'Poppins', sans-serif;
font-size: 1em;
padding: 0 10px;
user-select: none; /* Disable text selection */
}
.terminal_input .input {
width: 100%;
height: 100%;
background: none;
border: none;
color: #fff;
font-family: 'Poppins', sans-serif;
font-size: 1em;
padding: 0 10px;
outline: none; /* Disable the outline when the user selects the input */
}