-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
72 lines (63 loc) · 1.1 KB
/
styles.css
File metadata and controls
72 lines (63 loc) · 1.1 KB
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
body {
margin: 0;
padding: 0;
font-family: "Inter", Arial, sans-serif;
background: #f6f8fa;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
flex-direction: column;
}
.container {
background: white;
padding: 40px 50px;
border-radius: 18px;
box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
text-align: center;
width: min(90%, 450px);
}
h1 {
margin: 0;
font-size: 28px;
color: #222;
}
.subtitle {
margin-top: 5px;
color: #666;
font-size: 14px;
}
button {
margin-top: 20px;
padding: 12px 20px;
font-size: 15px;
border: none;
border-radius: 10px;
background: #007bff;
color: white;
cursor: pointer;
transition: 0.2s;
}
button:hover {
background: #005fcc;
}
#joke-box {
margin-top: 25px;
background: #f2f4f7;
padding: 20px;
border-radius: 12px;
min-height: 80px;
}
#joke-setup {
font-weight: 600;
color: #333;
}
#joke-punchline {
margin-top: 8px;
color: #555;
}
footer {
margin-top: 20px;
font-size: 13px;
color: #777;
}