-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
74 lines (62 loc) · 1.34 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
* {
box-sizing: border-box;
}
html {
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
background-image: linear-gradient(#57bfe2b3,rgba(208, 227, 65, 0.701),rgba(207, 83, 38, 0.762));
background-repeat: no-repeat;
background-size: cover;
height: 100%;
margin: 0;
}
header {
text-align: center;
}
h1 {
font-weight: lighter;
}
.container {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
flex-basis:auto;
align-items: center;
flex-grow: 4;
flex-shrink: 3;
}
#events {
text-align: center;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.26);
margin: 3rem;
background-color: #ffffff93;
}
input {
border:1px solid rgb(99, 141, 99);
margin: 0.1rem;
padding: 0.25rem;
font-weight: lighter;
}
input:hover{
background-color: rgb(188, 227, 188);
}
input:focus-visible{
background-color: rgb(207, 233, 207);
outline:1px solid rgb(99, 141, 99);
}
button {
background-color: rgb(156, 208, 156);
border: 1px solid rgb(99, 141, 99);
border-radius: 20px;
padding: 0.5rem 0.75rem;
margin: 0.1rem;
margin-left: 1.1rem;
margin-right: 1.1rem;
cursor: pointer;
min-width: auto;
max-width: 7rem;
min-height: auto;
max-height: 2rem;
}
button:hover {
background-color: rgb(131, 197, 131);
}