-
Notifications
You must be signed in to change notification settings - Fork 0
/
t.css
67 lines (57 loc) · 1.06 KB
/
t.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
body {
font-family: Arial, sans-serif;
padding: 20px;
background-color: #f4f4f9;
}
h1 {
text-align: center;
color: #333;
}
.container {
max-width: 600px;
margin: 0 auto;
padding: 20px;
background-color: white;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
border-radius: 8px; /* Rounded corners for a more modern look */
}
input, button {
width: 100%;
padding: 10px;
margin: 10px 0;
box-sizing: border-box;
border-radius: 4px; /* Rounded corners for inputs and buttons */
}
input {
border: 1px solid #ccc;
font-size: 14px;
}
button {
background-color: #4CAF50;
color: white;
border: none;
cursor: pointer;
font-size: 16px;
}
button:hover {
background-color: #45a049;
}
.output {
margin-top: 20px;
}
.output p {
padding: 8px;
background-color: #e1e1e1;
border-radius: 4px;
font-size: 14px;
}
a {
display: inline-block;
margin-top: 20px;
text-decoration: none;
color: #4CAF50;
font-weight: bold;
}
a:hover {
text-decoration: underline;
}