-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
127 lines (109 loc) · 1.89 KB
/
style.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
html,body {
background: url(sunset.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
p {
color: white;
font-size: 40px;
margin-left: 10px;
}
h1 {
color: white;
text-align: center;
padding-top: 2rem;
text-transform: uppercase;
font-style: italic;
}
span {
text-decoration: underline;
font-weight: bold;
color: orange;
}
.container {
padding-top: 70px;
margin-right: 200px;
}
.col-12 {
font-size: 35px;
font-weight: bold;
color: white;
margin-left: 20px;
}
form.example input[type=text] {
padding: 10px;
font-size: 17px;
border: 1px solid grey;
float: left;
width: 40%;
background: #f1f1f1;
}
form.example button {
float: left;
width: 10%;
padding: 10px;
background: orange;
color: white;
font-size: 17px;
border: 1px solid grey;
border-left: none; /* Prevent double borders */
cursor: pointer;
}
.center {
text-align: center;
}
h3 {
border-style: dashed;
border-color: orange;
border-width: 5px;
color: white;
padding: 10px;
font-weight: bold;
margin: 50px;
}
.row {
margin: 100px ;
}
h2 {
font-size: px;
color: white;
}
img {
border-style: solid;
border-width: 10px;
border-color: orange;
padding: 10px;
background-color: white;
cursor: pointer;
}
@keyframes slidy {
0% { left: 0%; }
20% { left: 0%; }
25% { left: -100%; }
45% { left: -100%; }
50% { left: -200%; }
70% { left: -200%; }
75% { left: -300%; }
95% { left: -300%; }
100% { left: -400%; }
}
body { margin: 0; }
div#slider { overflow: hidden; }
div#slider figure img { width: 20%; float: left; }
div#slider figure {
position: relative;
width: 500%;
margin: 0;
left: 0;
text-align: left;
font-size: 0;
animation: 30s slidy infinite;
}
footer {
background-color: grey;
color: white;
margin-bottom: 10px;
margin-top: 150px;
}