-
Notifications
You must be signed in to change notification settings - Fork 0
/
style1.css
76 lines (64 loc) · 1.24 KB
/
style1.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
68
69
70
71
72
73
74
75
76
body {
background: url('digital-art-moon-wallpaper.jpg') no-repeat center center fixed;
background-size: cover;
font-family: 'Arial', sans-serif;
color: white;
text-align: center;
margin: 0;
padding: 0;
}
h1, h3 {
color: #FFD700;
text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
}
.A{
color: #d8068e;
}
h1 {
font-size: 3em;
}
h3 {
font-size: 1.5em;
}
.form-container {
margin-top: 20px;
color: orange;
}
input[type="text"] {
padding: 10px 20px;
font-size: 1.2em;
margin: 10px 0;
border-radius: 5px;
border: 2px solid #00FFFF;
width: 60%;
max-width: 400px;
color: #333;
}
input[type="submit"] {
background-color: #00FFFF;
color: #fff;
font-size: 1.2em;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
text-transform: uppercase;
transition: all 0.3s ease-in-out;
}
input[type="submit"]:hover {
background-color: #00CCFF;
transform: scale(1.1);
}
input[type="submit"]:active {
background-color: #0099CC;
transform: scale(1);
}
.result-container {
margin-top: 30px;
}
.number {
font-size: 2.5em;
color: #FFD700;
font-weight: bold;
text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
}