forked from amogusussy/start
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
88 lines (75 loc) · 1.24 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
:root {
--bg: #1e1e2e;
--fg: #c6d0f5;
--second-bg: #11111b;
--blue: #8caaee;
}
body {
font-family: 'Courier New', monospace;
background-color: var(--bg);
color: var(--fg);
margin: auto;
width: 50%;
}
.content {
margin-top: 22%;
}
#time {
font-size: 100px;
text-align: center;
}
#date {
font-size: 30px;
text-align: center;
}
input {
background-color: var(--bg);
border: none;
font-size: 50px;
color: var(--fg);
border-bottom: 3px solid var(--fg);
display: block;
margin-left: auto;
margin-right: auto;
width: 70%;
} input:focus {
border-color: var(--blue);
outline: none;
}
#weather {
position: absolute;
top: 15px;
right: 15px;
}
a {
text-decoration: none;
color: var(--blue);
display: block;
margin-right: 33%;
display: inline-block;
padding: 2px 0px;
}
a::before {
content: "> ";
}
#links {
margin-top: 25px;
display: flex;
font-size: 14px;
flex-wrap: wrap;
}
.list {
background-color: var(--second-bg);
border-radius: 15px;
margin: 10px;
flex: 1 1 0%;
}
ul {
list-style-type: none;
font-weight: bold;
font-size: 20px;
padding-left: 30px;
}
#st {
margin: 0px;
}