-
Notifications
You must be signed in to change notification settings - Fork 134
/
Copy pathcompoundConditionals.css
72 lines (61 loc) · 1.05 KB
/
compoundConditionals.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
/*
font-family: Helvetica, Arial, sans-serif;
color: #e4a4ee;*/
body {
font-family: Helvetica, Arial, sans-serif;
background-color: #f4f4f4;
color: #333;
line-height: 1.6;
margin: 0;
padding: 0;
}
h1 {
background-color: #333;
color: #00ffcc;
padding: 20px 0;
text-align: center;
}
.login {
width: 400px;
margin: 30px auto;
padding: 20px;
border: 1px solid #ddd;
background: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.login h3 {
color: #e4a4ee;
margin-bottom: 20px;
text-align: center;
}
.login p {
margin: 10px 0;
}
input.username,
input.password {
width: 80%;
padding: 10px;
margin-bottom: 20px;
border: 1px solid #ddd;
}
.button {
margin-top: 20px;
text-align: center;
}
button {
width: 200px;
padding: 10px;
border: none;
background-color: #333;
color: white;
font-size: 16px;
cursor: pointer;
}
button:hover {
background-color: #555;
}
.message {
margin-top: 20px;
text-align: center;
color: #0080ff;
}