-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyles.css
111 lines (93 loc) · 2.07 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
body {
font-size: 14px;
background-color: rgb(222, 191, 226);
}
h1 {
color: navy;
margin-left: 80px;
font-size: 30px;
}
p {
font-size: 16px;
}
input[type="date"] {
font-family: Arial, Helvetica, sans-serif;
font-size: 25px;
margin-top: 2vh;
margin-bottom: 2vh;
margin-right: 1vh;
margin-left: 1vh;
}
input[type="time"] {
font-family: Arial, Helvetica, sans-serif;
font-size: 25px;
width: 50vh;
}
input[type="number"] {
font-family: Arial, Helvetica, sans-serif;
font-size: 25px;
width: 50vh;
}
.select {
font-family: Arial, Helvetica, sans-serif;
font-size: 25px;
}
.buttons {
background: #0066A2;
color: white;
border-style: outset;
border-color: #0066A2;
height: 50px;
width: 100px;
font-family: Arial, Helvetica, sans-serif;
font-size: 25px;
border-radius: 20px;
}
textarea {
width: 100%;
height: 150px;
padding: 12px 20px;
box-sizing: border-box;
border: 2px solid #ccc;
border-radius: 20px;
background-color: #f8f8f8;
resize: none;
font-family: Arial, Helvetica, sans-serif;
font-size: 25px;
}
.form {
background-color: lightblue;
margin-top: 2vh;
margin-bottom: 2vh;
margin-right: 1vh;
margin-left: 1vh;
padding: 20px;
border-style: solid;
border-width: 5px;
border-color: #0066A2;
border-radius: 20px;
font-family: Arial, Helvetica, sans-serif;
font-size: 25px;
}
.flex-container {
display: flex;
flex-direction: column;
}
#new {
margin-left: 2vh;
margin-top: 2vh;
}
#outputp {
font-size: 25px;
font-family: Arial, Helvetica, sans-serif;
border-style: solid;
border-width: 5px;
border-color: #0066A2;
border-radius: 20px;
background-color: rgb(166, 229, 250);
margin-top: 2vh;
margin-bottom: 2vh;
margin-right: 1vh;
margin-left: 1vh;
padding: 20px;
}