-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
94 lines (72 loc) · 1.38 KB
/
style.css
File metadata and controls
94 lines (72 loc) · 1.38 KB
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
@keyframes wipeUp {
0%{
left:0px;
opacity: 0;
}
100%{
left:600px;
opacity: 1;
}
}
body{
background-image: url("background.jpg");
background-attachment: fixed;
animation-name:wipeUp;
animation-duration: 5s;
background-size:100%;
color: grey;
}
div{
display: inline-block;
width: 800px;
justify-content: center;
text-align: center;
margin-top: 100px;
top: 0px;
vertical-align: top;
}
div#intro{
justify-content: center;
text-align: center;
align-content: center;
}
img{
height:600px;
border-radius: 10px;
}
div.section2 h1{
font-size:xx-large;
font-weight: 1000;
}
li{
list-style: none;
font-size: xx-large;
}
h1{
font-weight: bolder;
font-size: xx-large;
text-align: center;
}
input{
width: 700px;
margin-bottom: 4px;
padding-top: 2px;
border-radius: 5px;
height: 50px;
font-size: larger;
font-weight: bold;
}
textarea{
text-align: left;
border-radius: 5px;
font-size: larger;
font-weight: bold;
}
button{
height:60px;
width: 600px;
font-size: larger;
font-weight: bolder;
background-color: rgb(4, 46, 4);
margin-bottom: 50px;
}