-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
124 lines (100 loc) · 2.39 KB
/
styles.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
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
118
119
120
121
122
123
124
body {
font-family: Arial, sans-serif;
background-color: #10daf9fb;
color: #ffffff;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-image: url('18236361_rm251-mind-14-g.jpg');
background-size: cover;
background-position: none;
background-attachment: fixed;
}
.container {
background: rgba(125, 170, 178, 0.41);
padding: 40px;
border-radius: 15px;
text-align: center;
box-shadow: 0 4px 10px rgba(231, 5, 144, 0.5);
}
h1 {
color: #040006;
margin-bottom: 10px;
}
h3 {
margin-bottom: 15px;
color:rgb(7, 233, 22);
}
.input-group {
display: flex;
gap: 10px;
justify-content: center;
margin-bottom: 15px;
color: #000404;
cursor: pointer;
}
.input-group button:hover{
background: #5dc8ebcd;
transform: scale(1.05);
}
.input-group input {
padding: 15px;
font-size: 17px;
width: 200px;
color: #040105;
border: 2px solid #ccc;
border-radius: 30px;
background: linear-gradient(135deg, #10daf9, #a75deb);
}
.button-group button {
background: #222;
font-size: 17px;
color: #fff;
border: none;
padding: 15px 30px;
margin-top: 30px;
border-radius: 30px;
cursor: pointer;
transition: background 0.3s ease;
}
.button-group button:hover {
background: #5dc8ebcd;
}
.result{
margin-top: 30px;
}
.mass{
color: #040006;
border: 2px solid #ccc;
border-radius: 25px;
background: linear-gradient(135deg, #10daf9, #a75deb);
}
select {
padding: 10px;
font-size: 16px;
border: 2px solid #ccc;
border-radius: 20px;
background: linear-gradient(135deg, #10daf9, #a75deb);
color: rgb(11, 2, 10);
cursor: pointer;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
transition: box-shadow 0.3s ease, transform 0.3s ease;
}
select:hover {
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
transform: scale(1.05);
}
select:focus {
outline: none;
box-shadow: 0 0 8px #a75deb;
}
/* Ensure the result stays in one line */
.output {
white-space: nowrap; /* Prevent wrapping of text */
color: #000606;
}
.super{
color: rgb(9, 4, 0);
}