-
Notifications
You must be signed in to change notification settings - Fork 0
/
editstylecss
105 lines (98 loc) · 1.53 KB
/
editstylecss
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
html{
font-size: 15px;
}
*{
box-sizing: border-box;
font-family: 'Poppins',sans-serif ;
}
.topnav {
display: flex;
background-color: #333;
justify-content: space-between;
flex-flow: row;
width: max-c
}
body{
margin: 0;
background-color: black;
}
.add{
color: #4CAF50;
padding: 0.5rem;
width: 3rem;
height: 3rem;
border: none;
background-color: transparent;
font-weight: bold;
text-decoration: none;
font-size: 3rem;
}
.wrap{
display: flex;
background-color: #4CAF50;
width: 70%;
margin: 1rem auto;
border-radius: 4px;
padding: 2rem 0;
flex-direction: column;
}
.wrap div{
align-self: center;
font-size: 2rem;
font-weight: bold;
padding: 0.5rem;
}
.myform{
align-self: center;
margin-top: 2rem;
max-width:500px;
}
.inputvalue{
width: 100%;
padding: 0.7rem;
margin: 1rem;
}
.upload{
width: 90%;
padding: 0.5rem;
margin: 0.7rem;
margin-top:0;
}
.submitbutton{
background-color: orange;
width: 80%;
padding: 0.5rem;
margin: 0.5rem;
border: none;
border-radius: 4px;
color: white;
font-weight: bold;
font-size: 1.2rem;
margin-top: 2.5rem;
}
.backbutton{
background-color: #3498db;
width: 80%;
border: none;
color: white;
font-weight: bold;
font-size: 1.2rem;
margin: 0.5rem;
padding: 0.5rem;
}
#dateof{
display:flex;
}
#in{
flex-shrink:2;
width:20%;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
/* Firefox */
input[type=number] {
-moz-appearance: textfield;
}