-
Notifications
You must be signed in to change notification settings - Fork 0
/
dogs.css
89 lines (74 loc) · 1.86 KB
/
dogs.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
body {
margin: 0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: url("https://images.unsplash.com/photo-1519843405077-a95758ac3d8e?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1031&q=80");
}
.application {
height: 100%;
width: 100%;
display: flex;
flex-direction: row;
}
.slideshow {
flex: 1;
position: relative;
overflow: hidden;
background-image: url("https://images.unsplash.com/photo-1492724724894-7464c27d0ceb?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=774&q=80");
}
.container {
text-align: left;
}
.column {
float: left;
width: 50%;
margin-top: 210px;
padding: 20px;
}
.header select{
font-size: 1.5rem;
background-color: darkgoldenrod;
}
.header h1 {
margin: 0 0 9px 0;
background-color: darkslategrey;
}
#subject {
font-weight: 500;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
font-style: italic;
background-color: sienna;
}
.column p {
font-size: medium;
font-style: italic;
font-family: fantasy;
background-color: teal;
}
#myBtn {
font-style: italic;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
background-color: peru;
}
.slide {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
background-repeat: no-repeat;
background-size: contain;
background-position: center center;
opacity: 0;
transform: scale(1);
transition: all .9s ease-out;
}
.slide:nth-child(2) {
opacity: 1;
transform: scale(1.08);
}
.contact{
position: relative;
right: 55%;
top: 0%;
background-color: maroon;
}