-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
122 lines (107 loc) · 2.05 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
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
112
113
114
115
116
117
118
119
120
121
122
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
font-family: "Bubblegum Sans", cursive;
font-size: 20px;
color: midnightblue;
background: #8cd8e6;
display: flex;
flex-direction: column;
align-items: center;
}
header{
background: #0dcaf0;
box-shadow: 5px 5px 10px mediumblue, 1px 3px 5px midnightblue inset;
width: 100%;
display: flex;
flex-direction: row;
justify-content:center;
padding: 20px;
}
nav {
width: 55%;
padding: 5px;
}
nav a {
text-decoration: none;
color: aliceblue;
margin-right: 20px;
cursor: pointer;
}
nav a:hover {
color: midnightblue;
}
form {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 30px;
width: 90%;
}
#inputs{
width: 60%;
display: flex;
flex-direction: column;
}
input {
font-size: 20px;
padding: 7px;
margin-bottom: 10px;
border-radius: 5%;
box-shadow: 5px 5px 10px mediumblue, 1px 3px 5px midnightblue inset;
}
#submit-button {
background: #0dcaf0;
border: none;
color: aliceblue;
font-size: 20px;
border-radius: 10%;
box-shadow: 5px 5px 10px mediumblue, 1px 3px 5px midnightblue inset;
margin-top: 30px;
padding: 10px;
width: 30%;
cursor: pointer;
}
#submit-button:hover {
border: 3px solid midnightblue;
box-shadow: 5px 5px 10px midnightblue, 10px 30px 45px midnightblue inset;
transition: 0.2s;
transform: translateY(-1px);
}
#submit-button:active {
box-shadow: 5px 5px 10px cyan, 10px 30px 45px cyan inset;
transition: 0.2s;
}
.submit-history-cards{
width: 53%;
color: midnightblue;
margin-top: 40px;
}
.submit-history-card{
margin-top: 20px;
margin-bottom: 20px;
padding: 20px;
box-shadow: 5px 5px 10px cyan, 10px 30px 45px white inset;
border-radius: 21px;
display: flex;
flex-direction: column;
}
.card-label{
color:mediumblue;
margin: 10px 0;
}
.delete-button{
align-self: center;
width: 30%;
background-color:magenta;
box-shadow: 5px 5px 10px cyan;
color: aliceblue;
font-size: 20px;
border-radius: 21px;
padding: 5px;
margin: 10px 5px;
cursor: pointer;
}