-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylesheet.css
More file actions
53 lines (53 loc) · 958 Bytes
/
Copy pathstylesheet.css
File metadata and controls
53 lines (53 loc) · 958 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
48
49
50
51
52
53
* {
margin: 0;
padding: 0;
}
body {
background-color: black;
}
h1 {
margin-top: 20px;
color: red;
text-align: center;
overflow: hidden;
width: 200px;
margin: 0 auto;
background-color: black;
box-shadow: 0 10px 10px 10px blue;
transition: all 300ms ease-in;
}
h1:hover {
background-color: yellow;
color: black;
box-shadow: 0 0 3px 3px blue;
-webkit-transform:translateY(20px);
}
p {
width: 300px;
height: 100px;
overflow: scroll;
margin-top: 30px;
opacity: .5;
background-color: white;
transition: all 300ms ease-in;
margin: 40px auto 20px;
}
p:hover {
opacity: 1;
}
.input_button{
color: white;
border: 1px solid lightgray;
width: 50px;
text-align: center;
cursor: pointer;
margin: 2px 2px;
}
.input1, .input_button {
display: inline;
}
.input1{
border: 1px solid lightgray;
width: 100px;
margin: 2px 2px 2px 200px;
}