-
Notifications
You must be signed in to change notification settings - Fork 13
/
style.css
101 lines (81 loc) · 1.77 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
@import url('https://fonts.googleapis.com/css2?family=Ubuntu+Mono&display=swap');
html,body {
font-family: 'Ubuntu Mono', monospace;
font-size: 16px;
background: #181825;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
padding: 0px;
margin: 0px;
}
img {
height: 230px;
width: 630px;
object-fit: cover;
border: 2px solid #a9b1d6;
/* border-bottom: none; */
margin-bottom: -3px;
}
nav {
color: #a9b1d6;
background-color: #13131e;
display: grid;
grid-template-columns: auto auto auto auto;
margin-top: 0px;
text-align: center;
border: 2px solid #a9b1d6;
border-top: none;
padding-top: 5px;
padding-bottom: 5px;
}
ul {
list-style-type: none;
margin-left: -35px;
margin-top: 5px;
margin-bottom: 5px;
}
/* div.user {
background-color: #262434;
color: white;
margin-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding: 3px;
border: 1px solid white;
}
div.taskbar {
color: #a9b1d6;
background-color: #262434;
border: 1px solid #a9b1d6;
padding: 3px;
} */
.clock-box {
position: relative;
color: #a9b1d6;
background-color: #181825;
flex-direction: row;
display: flex;
justify-content: space-between;
}
a {
text-decoration: none;
color: #a9b1d6;
}
input {
background-color: #13131e;
font: 16px 'Ubuntu Mono', monospace;
color: #a9b1d6;
height: 100%;
width: 100%;
border: 2px solid #a9b1d6;
border-top: none;
text-align: center;
margin-top: 0px;
outline: none;
padding: 5px;
}
input::placeholder {
color: #a9b1d6;
}