forked from Shashankss1205/TeamTitans
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
54 lines (46 loc) · 830 Bytes
/
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
body {
margin: 0;
padding: 0;
font-family: 'Arial', sans-serif;
}
.popup-container {
width: 250px;
padding: 30px;
text-align: center;
background-color: #c3c3c3;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
h2 {
color: #333;
}
#result-container {
margin: 20px 0;
padding: 15px;
background-color: #f5f5f5;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.result-item {
margin-bottom: 10px;
}
.result-item h3 {
color: #333;
margin-bottom: 8px;
}
.result-item p {
color: #666;
font-size: 14px;
}
button {
background-color: #4caf50;
color: #fff;
border: none;
padding: 12px 24px;
cursor: pointer;
border-radius: 5px;
font-size: 16px;
}
button:hover {
background-color: #45a049;
}