-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
141 lines (132 loc) · 3.17 KB
/
index.css
File metadata and controls
141 lines (132 loc) · 3.17 KB
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
@import url('https://fonts.googleapis.com/css2?family=Silkscreen&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@700&display=swap');
body {
display: flex;
flex-direction: column;
min-height: 100vh;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
background-color: #ffffff;
font-family: ubuntu, sans-serif;
}
.content {
flex: 1 0 auto; /* This will make the content grow to take up all available space */
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
footer {
flex-shrink: 0; /* This will prevent the footer from shrinking */
}
.social-media a {
color: #000000; /* Change the color of the icons */
margin: 0 25px; /* Add some margin around the icons */
text-decoration: none; /* Remove the underline from the links */
}
.social-media a:hover {
color: #007bff; /* Change the color of the icons when hovered */
}
.social-media i {
font-size: 25px; /* Increase the size of the icons */
}
.device-info-text {
color: #000000;
font-size: 16px;
font-weight: bold;
}
.user-time {
color: #000000;
font-size: 16px;
font-weight: bold;
}
.time-switch-button {
color: #ffffff;
background-color: #0db10d;
border: 1px solid #000000;
border-radius: 5px;
padding: 5px;
margin: 5px;
cursor: pointer;
box-sizing: border-box;
width: 200px; /* Adjust as needed */
font-size: 14px; /* Adjust as needed */
font-family: ubuntu;
}
.dark-mode {
color: #ffffff;
background-color: #000000;
border: 1px solid #000000;
border-radius: 5px;
padding: 5px;
margin: 0px;
cursor: pointer;
box-sizing: border-box;
width: 200px;
font-size: 14px;
display:block;
font-family: ubuntu;
}
.menu-button{
color: #ffffff;
background-color: #000000;
border: 1px solid #000000;
border-radius: 5px;
padding: 5px;
margin: 0px;
cursor: pointer;
box-sizing: border-box;
width: 200px;
font-size: 14px;
display:block;
font-family: ubuntu;
}
body, .device-info-text, .user-time, .social-icon {
transition: background-color 0.5s ease-in-out, color 0.5s ease-in-out;
}
.scrolling-text-box {
width: 200px;
height: 50px;
border: 0px solid black;
overflow: hidden;
}
.scrolling-text {
width: max-content;
white-space: nowrap;
animation: scrolling 5s linear infinite;
}
@keyframes scrolling {
0% { transform: translateX(100%); }
100% { transform: translateX(-100%); }
}
html {
scroll-behavior: smooth;
}
.button-link {
/* Other styles... */
position: relative;
left: 400px;
top: -35px;
display: inline-block;
padding: 10px 20px; /* Adjust padding as needed */
color: white;
background-color: #007BFF;
text-decoration: none;
border-radius: 5px;
margin-right: 100px;
line-height: 40px; /* Adjust line-height to match the height of the button (including padding) */
text-align: center;
}
.button-container {
display: flex;
justify-content: space-between;
}
.button-container button {
margin-right: 25px; /* Adjust as needed */
}
a {
text-decoration: none;
}