-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
117 lines (102 loc) · 1.97 KB
/
Copy pathstyles.css
File metadata and controls
117 lines (102 loc) · 1.97 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
/* General Retro Theme */
body {
font-family: 'Courier New', Courier, monospace;
background: rgb(42, 9, 65);
text-align: center;
margin: 0;
padding: 0;
color: white;
}
.container {
max-width: 50%;
margin: 20px auto;
padding: 20px;
}
h1.retro-title {
font-size: 3rem;
margin-bottom: 20px;
color: white;
text-shadow: 2px 2px rgb(195, 116, 252);
}
.timer {
font-size: 3rem;
background: rgb(171, 134, 198);
color: #e9e7e3;
padding: 20px;
border-radius: 50px;
margin-bottom: 20px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}
.timer span {
font-weight: bold;
}
.retro-button {
margin: 10px;
padding: 10px 20px;
background: #864cd3;
border: 2px solid #ffffff;
color: #ffffff;
font-size: 1.2rem;
cursor: pointer;
border-radius: 50px;
transition: background-color 0.3s ease, transform 0.2s ease;
}
.retro-button:hover {
background: #8534a2;
transform: scale(1.05);
}
.retro-border {
border: 2px solid #ffffff;
padding: 20px;
border-radius: 50px;
margin-top: 15px;
color: aliceblue;
background-color: plum;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
label {
color: aliceblue;
margin: 10px 0;
}
.settings {
text-align: center;
}
.settings h3 {
margin-bottom: 15px;
color: #ffffff;
text-shadow: 1px 1px #864cd3;
}
.time-settings {
display: flex;
justify-content: space-between;
align-items: center;
gap: 20px;
margin: 15px auto;
width: 100%;
max-width: 600px;
}
.time-settings label {
display: flex;
flex-direction: column;
align-items: center;
}
.time-settings input {
width: 80px;
text-align: center;
padding: 5px;
font-size: 1rem;
border: 2px solid #ffffff;
border-radius: 10px;
background: rgb(171, 134, 198);
color: #ffffff;
}
input:focus {
outline: none;
border-color: #864cd3;
box-shadow: 0 0 5px #864cd3;
}
.settings input[type="number"]::-webkit-inner-spin-button,
.settings input[type="number"]::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
}