-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
142 lines (120 loc) · 2.34 KB
/
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
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
#result {
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
margin-left:auto;
margin-right:auto;
border-collapse: collapse;
width: 90%;
}
#result td, #result th {
border: 1px solid #ddd;
padding: 8px;
text-align : center;
}
#result tr:nth-child(even){background-color: #f2f2f2;}
#result tr:hover {background-color: #ddd;}
#result th {
padding-top: 12px;
padding-bottom: 12px;
text-align: center;
background-color: #4CAF50;
color: white;
}
/*
body {
text-align : center;
width = 400px;
margin = auto;
}
div.content
{
width: 800px;
margin : 0 auto;
}
*/
fieldset{
border:2px solid green;
-moz-border-radius:8px;
-webkit-border-radius:8px;
border-radius:8px;
}
*{padding: 0; margin: 0; box-sizing: border-box;}
body{
height: 900px;
text-align : center;
width = 400px;
margin = auto;
}
header {
background: url('http://webmadewell.com/wp-content/uploads/2018/01/img-bg-sample-parallax-header.jpg');
text-align: center;
width: 100%;
height: auto;
background-size: cover;
background-attachment: fixed;
position: relative;
overflow: hidden;
border-radius: 0 0 85% 85% / 30%;
}
header .overlay{
width: 100%;
height: 100%;
padding: 50px;
color: #FFF;
text-shadow: 1px 1px 1px #333;
background-image: linear-gradient( 135deg, #9f05ff69 10%, #fd5e086b 100%);
}
h1 {
font-family: 'Dancing Script', cursive;
font-size: 65px;
margin-bottom: 30px;
}
h3, p {
font-family: 'Open Sans', sans-serif;
margin-bottom: 30px;
}
button {
border: none;
outline: none;
padding: 10px 20px;
border-radius: 50px;
color: #333;
background: #e4e8f0;
margin-bottom: 25px;
box-shadow: 0 3px 20px 0 #0000003b;
}
button:hover{
cursor: pointer;
}
div.content
{
width: 600px;
margin : 0 auto;
}
html{
font-size: 150%
}
.love {
display: inline-block;
position: relative;
top: .2em;
font-size: 1.4em;
color: #e74c3c;
-webkit-transform: scale(.9);
-moz-transform: scale(.9);
transform: scale(.9);
-webkit-animation: love .5s infinite linear alternate-reverse;
-moz-animation: love .5s infinite linear alternate-reverse;
animation: love .5s infinite linear alternate-reverse;
}
@-webkit-keyframes love {
to {-webkit-transform: scale(1.2);}
}
@-moz-keyframes love {
to {-moz-transform: scale(1.2);}
}
@keyframes love {
to {transform: scale(1.2);}
}
a{
color:black
}