forked from GCA-Classroom/01-welcome-codespaces
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
68 lines (59 loc) · 1.04 KB
/
style.css
File metadata and controls
68 lines (59 loc) · 1.04 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
* {
box-sizing: border-box;
}
body {
height: 100vh;
margin: 0;
display: flex;
align-items: center;
justify-content: center;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
background: linear-gradient(135deg, #a5b4ff 0%, #a98bc7 100%);
}
.container {
background: white;
padding: 3rem 4rem;
border-radius: 12px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
text-align: center;
}
h1 {
color: #2d3748;
margin-bottom: 1.5rem;
margin-top: 0;
}
input {
width: 100%;
padding: 0.75rem;
margin-bottom: 1rem;
border: 2px solid #e2e8f0;
border-radius: 6px;
font-size: 1rem;
outline: none;
}
input:focus {
border-color: #667eea;
}
button {
width: 100%;
background: #667eea;
color: white;
border: none;
padding: 0.75rem 1.5rem;
border-radius: 6px;
font-size: 1rem;
cursor: pointer;
transition: background 0.2s;
}
button:hover {
background: #5a67d8;
}
.hidden {
display: none;
}
#greeting {
margin-top: 1rem;
color: #2d3748;
font-size: 1.25rem;
white-space: pre-line;
}