-
Notifications
You must be signed in to change notification settings - Fork 0
/
light-mode.css
103 lines (91 loc) · 1.79 KB
/
light-mode.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
body {
background-color: #F4F4F4;
color: #636363;
font-family: 'Roboto Mono', monospace;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
}
.clock {
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
font-size: 90px;
color: #636363;
margin-bottom: 25px;
text-align: center;
}
.time {
color: #636363;
}
.image-container {
margin-top: 10px;
display: flex;
justify-content: center;
align-items: center;
}
.behance {
display: flex;
justify-content: center;
align-items: center;
margin-top: 10px;
margin-left: 5px;
}
.behance img {
display: block;
width: 25px;
height: 25px;
margin-right: 5px;
margin-left: 5px;
cursor: pointer;
filter: invert(1) opacity(0.6);
}
button {
font-family: 'Roboto Mono', monospace;
font-size: 15px;
padding: 15px 15px;
background-color: #F4F4F4;
color: #636363;
border: 2px solid #636363;
cursor: pointer;
margin: 0px;
margin-top: 10px;
margin-bottom: 10px;
border-radius: 50px;
}
button:hover {
background-color: #636363;
color: #F4F4F4;
border: 2px solid #F4F4F4;
}
.date {
font-size: 20px;
margin-top: 10px;
}
/* Media queries for responsiveness */
@media (max-width: 600px) {
.clock {
font-size: 40px;
}
.behance img {
width: 15px;
height: 15px;
margin-right: 2px;
margin-left: 2px;
}
button {
font-size: 12px;
padding: 10px 12px;
margin-top: 5px;
margin-bottom: 5px;
}
.date {
font-size: 16px;
margin-top: 5px;
}
}