-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
44 lines (39 loc) · 868 Bytes
/
styles.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
body {
margin: 0px;
background-image: url(image_house.jpg);
}
div {
background: linear-gradient(to bottom, rgba(114, 116, 219, 0.5), rgba(49, 4, 133, 0.2));
text-align: center;
background-attachment: scroll;
}
h1 {
color: rgb(32, 7, 100);
padding-top: 100px;
padding-bottom: 0px;
font-family: serif;
font-size: 32;
text-align: center;
line-height: 20px;
transition: all 4s ease-in-out;
}
h2 {
color: rgb(32, 7, 100);
padding-top: 0px;
font-style: italic;
text-align: center;
text-shadow: 1px 1px rgb(47, 4, 68);
transition: all 4s ease-in-out;
}
.area {
margin-bottom: 10px;
width: 200px;
transition: all 4s ease-in-out;
}
#send_button {
width: 100px;
height: 20px;
background-color: rgb(236, 216, 245);
font-weight: 500;
transition: all 4s ease-in-out;
}