Create style.css
Browse files- templates /style.css +91 -0
templates /style.css
ADDED
@@ -0,0 +1,91 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');
|
2 |
+
|
3 |
+
* {
|
4 |
+
margin: 0;
|
5 |
+
padding: 0;
|
6 |
+
font-family: 'Poppins', sans-serif;
|
7 |
+
}
|
8 |
+
|
9 |
+
body {
|
10 |
+
background-image: linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%);
|
11 |
+
background-size: cover;
|
12 |
+
background-attachment: fixed;
|
13 |
+
background-repeat: no-repeat;
|
14 |
+
}
|
15 |
+
|
16 |
+
.main {
|
17 |
+
display: flex;
|
18 |
+
justify-content: center;
|
19 |
+
align-items: center;
|
20 |
+
height: 100vh;
|
21 |
+
}
|
22 |
+
|
23 |
+
#output {
|
24 |
+
margin-top: 20px;
|
25 |
+
border: 1px solid #ccc;
|
26 |
+
padding: 10px;
|
27 |
+
width: 80%;
|
28 |
+
margin-left: auto;
|
29 |
+
margin-right: auto;
|
30 |
+
min-height: 100px;
|
31 |
+
box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
|
32 |
+
|
33 |
+
}
|
34 |
+
|
35 |
+
.container {
|
36 |
+
background-color: rgba(255, 255, 255, 0.5);
|
37 |
+
text-align: center;
|
38 |
+
padding: 20px;
|
39 |
+
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
|
40 |
+
border-radius: 20px;
|
41 |
+
width: 400px;
|
42 |
+
}
|
43 |
+
|
44 |
+
.button {
|
45 |
+
display: flex;
|
46 |
+
justify-content: center;
|
47 |
+
align-items: center;
|
48 |
+
flex-direction: column;
|
49 |
+
}
|
50 |
+
|
51 |
+
#startButton {
|
52 |
+
margin-top: 20px;
|
53 |
+
padding: 20px;
|
54 |
+
width: 100px;
|
55 |
+
height: 100px;
|
56 |
+
border-radius: 50%;
|
57 |
+
cursor: pointer;
|
58 |
+
background-color: rgb(159, 159, 252);
|
59 |
+
}
|
60 |
+
|
61 |
+
#startButton:hover {
|
62 |
+
background-color: rgb(50, 50, 200);
|
63 |
+
}
|
64 |
+
|
65 |
+
#copyButton {
|
66 |
+
margin-top: 10px;
|
67 |
+
padding: 5px 10px;
|
68 |
+
cursor: pointer;
|
69 |
+
background-color: #4CAF50;
|
70 |
+
color: white;
|
71 |
+
border: none;
|
72 |
+
border-radius: 4px;
|
73 |
+
}
|
74 |
+
|
75 |
+
#copyButton:hover {
|
76 |
+
background-color: #45a049;
|
77 |
+
}
|
78 |
+
|
79 |
+
#clearButton {
|
80 |
+
margin-top: 10px;
|
81 |
+
padding: 5px 10px;
|
82 |
+
cursor: pointer;
|
83 |
+
background-color: #af4c4c;
|
84 |
+
color: white;
|
85 |
+
border: none;
|
86 |
+
border-radius: 4px;
|
87 |
+
}
|
88 |
+
|
89 |
+
#clearButton:hover {
|
90 |
+
background-color: #ac3434;
|
91 |
+
}
|