-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle1.css
More file actions
65 lines (65 loc) · 1.65 KB
/
Copy pathstyle1.css
File metadata and controls
65 lines (65 loc) · 1.65 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
body {
background: #f0f4f8;
font-family: Arial, sans-serif;
margin: 0;
}
.navbar {
background: #23a7fa;
padding: 15px 30px;
border-radius: 8px;
margin: 16px 0;
display: flex;
align-items: center;
justify-content: space-between;
}
.navbar .brand {
color: #fff;
font-weight: bold;
font-size: 1.2em;
margin-right: 20px;
}
.navbar nav a {
color: #fff;
text-decoration: none;
margin: 0 12px;
font-weight: 500;
}
.container {
background: #fff;
width: 340px;
margin: 40px auto;
border-radius: 8px;
padding: 28px;
box-shadow: 0 2px 8px rgba(34, 34, 34, 0.09);
}
h2 {
color: #23a7fa;
text-align: center;
}
form {
margin-top: 16px;
}
label {
display: block;
margin: 10px 0 4px 0;
color: #444;
}
input[type="text"], input[type="email"] {
width: 96%;
padding: 8px;
margin-bottom: 14px;
border-radius: 4px;
border: 1px solid #ddd;
font-size: 1em;
}
.enroll-btn {
background: #23a7fa;
color: #fff;
padding: 12px;
width: 100%;
border: none;
border-radius: 4px;
font-size: 1em;
cursor: pointer;
margin-top: 8px;
}