-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
95 lines (90 loc) · 1.81 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
body{
color: white;
background-color: rgb(41, 41, 41);
display: flex;
align-items: center;
justify-content: center;
}
#content{
background-color: rgb(31, 31, 31);
padding: 30px 100px;
animation: myk 0.5s;
animation-fill-mode: forwards;
box-shadow: 5px 5px 15px 0px rgba(0, 0, 0, 0.6);
border-radius: 5px;
}
@keyframes myk{
0%
{opacity: 0;}
100%
{opacity: 1;}
}
#content h1{
margin: 0;
padding: 0;
font-family: 'Roboto';
font-size: 4em;
}
#content p{
font-family: 'Catamaran', sans-serif;
font-weight: 600;
font-size: 30px;
margin: 0px 0px 10px 0px;
}
#content span{
color:#40ac48;
font-weight: 800;
text-decoration: underline;
}
form{
display: grid;
grid-template-columns: 1fr;
}
form input{
border:none;
border-radius: 10px;
margin-bottom: 20px;
padding: 20px;
font-size: 27px;
}
form input:focus{
outline: none;
border: none;
}
.formMessage{
display: none;
margin-top: -15px;
font-family: 'Catamaran', sans-serif;
color: yellow;
}
#lastRow{
display: grid;
grid-template-columns: auto auto auto;
grid-column-gap: 5px;
}
.checkbox{
font-family: 'Roboto';
font-weight: 700;
color: rgb(31, 31, 31);
background-color: white;
padding: 15px;
border-radius: 5px;
box-shadow: 0px 5px 5px 2px rgba(0, 0, 0, 0.8);
}
button{
font-family: 'Roboto';
font-size: 34px;
font-weight: 700;
color: rgb(31, 31, 31);
padding: 10px;
border-radius: 5px;
border: none;
cursor: pointer;
transition: all 0.25s;
box-shadow: 0px 5px 5px 2px rgba(0, 0, 0, 0.8);
}
button:hover{
background-color: black;
color:#40ac48;
outline: none;
}