We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1300d04 commit 2096c03Copy full SHA for 2096c03
Source-Code/StopWatch/style.css
@@ -0,0 +1,45 @@
1
+body {
2
+ display: flex;
3
+ justify-content: center;
4
+ align-items: center;
5
+ height: 100vh;
6
+ background-color: #2e2a2a;
7
+ margin: 0;
8
+ font-family: Arial, sans-serif;
9
+ }
10
+
11
+ .container {
12
13
+ flex-direction: column;
14
+ justify-items: center;
15
16
17
18
+ .stopwatch, h1, span{
19
+ color: aliceblue;
20
21
+ .stopwatch {
22
+ font-size: 48px;
23
+ margin-bottom: 20px;
24
25
26
+ .buttons {
27
28
29
+ gap: 10px;
30
31
32
+ button {
33
+ padding: 10px 20px;
34
+ font-size: 16px;
35
+ cursor: pointer;
36
+ border: none;
37
+ border-radius: 5px;
38
+ background-color: #007BFF;
39
+ color: #fff;
40
41
42
+ button:active {
43
+ background-color: #0056b3;
44
45
0 commit comments