-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
76 lines (66 loc) · 1.07 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
body {
background: rgb(41, 41, 41);
/* font-size: 10em; */
color: green;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
margin-left: 70px;
margin-right: 70px;
}
.title {
font-size: 70px;
text-align: center;
margin-bottom: 15px;
}
hr {
border-style: solid;
border-color: green;
border-width: 2px;
}
.container {
padding: 5px;
color: white;
background-color: rgb(27, 27, 27);
}
.row {
display: flex;
justify-content: center;
}
.column {
display: flex;
margin: 30px;
flex-direction: column;
justify-content: center;
align-items: center;
}
input[type="text"] {
text-align: center;
width: 150px;
font-size: 16px;
padding-bottom: 4;
padding-top: 4;
}
input[type="button"] {
border-style: none;
width: 150px;
background-color: green;
color: black;
font-size: 14;
padding-bottom: 4;
padding-top: 4;
border-radius: 15px;
}
textarea {
font-size: 20px;
resize: none;
}
td {
text-align: center;
background-color: white;
color: black;
}
p.subTitle {
text-align: center;
font-size: 22px;
margin-top: 10px;
margin-bottom: 10px;
}