-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
52 lines (45 loc) · 790 Bytes
/
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
html {
height: 100%;
}
body {
display: flex;
justify-content: center;
align-items: center;
min-height: 100%;
margin: 0;
background: linear-gradient(to bottom, rgb(101, 54, 98), rgb(81, 105, 114));
text-align: center;
font-family: sans-serif;
}
nav {
position: fixed;
top: 0;
right: 0;
text-align: right;
padding: 8px;
}
a {
color: black;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
main {
margin: 8px;
}
input,
button {
padding: 8px;
border: 1px solid deepskyblue;
border-radius: 8px;
font-size: 16px;
}
#thankyouMessage{
opacity: 0;
transition: all 0.5s;
background-color: rgb(21, 41, 34);
padding: 20px;
border-radius: 15px;
color: antiquewhite;
}