-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
47 lines (43 loc) · 997 Bytes
/
Copy pathstyle.css
File metadata and controls
47 lines (43 loc) · 997 Bytes
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
html, body {
height: 100%;
margin: 0;
font-family: Arial, Helvetica, sans-serif;
background-color: lightskyblue;
display: flex;
justify-content: center;
align-items: center;
}
#container {
background-color: aliceblue;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
text-align: center;
box-shadow:0 0 10px black;
h2 {
color: white;
background: #00BFFF;
padding: 10px;
border-radius: 5px;
border: gray solid 1px;
}
input {
padding: 10px;
border-radius: 5px;
margin: 5px;
outline: none;
border: 1px solid #00BFFF;
box-shadow:0 0 5px black;
}
button {
padding: 5px;
border-radius: 15px;
border: none;
background-color: #00BFFF;
color: white;
font-weight: bold;
cursor: pointer;
box-shadow:0 0 3px black;
border: gray solid 1px;
}
}