-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
126 lines (110 loc) · 2.1 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
123
124
125
126
* {
box-sizing: border-box;
}
html {
height: 100%;
}
/* STICKY FOOTER */
.main {
display: flex;
min-height: 100vh;
flex-direction: column;
}
.section {
flex: 1;
}
.navbar {
background-color: rgb(37, 37, 37);
}
.hov:hover {
color: white;
}
.back {
margin:1.5em;
}
.footer {
margin-top: 3em;
}
.time {
font-size: 1.2em;
font-weight: bold;
}
.title {
text-align: center;
font-variant: small-caps;
}
.form {
line-height: 1.8;
}
.avis {
margin-top: 1.2em;
text-align: center;
font-size: 0.9em;
font-style: italic;
}
/* input, select {
cursor: pointer;
border-radius: 0.3em;
font-size: 1.3em;
} */
/* .button {
margin-top: 4em;
display:block;
padding:0.35em 1.2em;
border:0.1em solid #FFFFFF;
margin-left: auto;
margin-right: auto;
border-radius:0.12em;
box-sizing: border-box;
text-decoration:none;
font-weight:300;
color:#FFFFFF;
background-color: rgba(0,0,0,0);
text-align:center;
transition: all 0.2s;
} */
/* .button:hover {
color:#000000;
background-color:#FFFFFF;
cursor: pointer;
} */
.slide-in-bottom {
-webkit-animation: slide-in-bottom 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
both;
animation: slide-in-bottom 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
/* ----------------------------------------------
* Generated by Animista on 2019-10-11 8:31:29
* Licensed under FreeBSD License.
* See http://animista.net/license for more info.
* w: http://animista.net, t: @cssanimista
* ---------------------------------------------- */
/**
* ----------------------------------------
* animation slide-in-bottom
* ----------------------------------------
*/
@-webkit-keyframes slide-in-bottom {
0% {
-webkit-transform: translateY(1000px);
transform: translateY(1000px);
opacity: 0;
}
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
opacity: 1;
}
}
@keyframes slide-in-bottom {
0% {
-webkit-transform: translateY(1000px);
transform: translateY(1000px);
opacity: 0;
}
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
opacity: 1;
}
}