-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
73 lines (62 loc) · 1.03 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
* {
font-family: Helvetica;
box-sizing: border-box;
}
body {
margin: 1rem;
background-color: #e9e5dd;
}
form {
width: 100%;
}
div {
display: flex;
flex-direction: column;
max-width: 500px;
margin: auto;
}
p#data {
text-align: center;
font-size: .8rem;
font-weight: 700;
}
h2 {
text-align: center;
}
h4 {
margin-bottom: .5rem;
}
h5{
color: #555555;
font-weight: 100;
font-size: .8rem;
text-align: center;
}
input {
border-radius: .5rem;
border: 1px solid #555555;
padding: .5rem;
}
input#submit {
border: black solid 1px;
padding: 5px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 18px;
margin: 2px 2px;
transition-duration: 0.4s;
cursor: pointer;
background-color: white;
color: black;
}
input#submit:hover {
background-color: #555555;
color: white;
border: 1px solid #555555;
}
textarea {
border: 1px solid black;
border-radius: .5rem;
padding: .5rem;
}