-
Notifications
You must be signed in to change notification settings - Fork 2
/
index_css.html
47 lines (42 loc) · 881 Bytes
/
index_css.html
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
<style>
* {
font-family: 'Baloo Da 2', cursive;
color: #302b63;
}
body {
height: 100vh;
background: linear-gradient(125deg, #24243e, #302b63, #0f0c29);
background-size: cover;
background-repeat: no-repeat;
}
h1 {
margin-top: 5px;
}
#container {
position: absolute;
top: 35%;
left: 50%;
transform: translate(-50%, -50%);
background-color: white;
padding: 25px;
border: 1px solid #302b63;
box-shadow: 0px 4px 10px #ddd5,
0px 6px 15px #ddd5,
0px 8px 20px #ddd5,
0px 10px 25px #ddd5;
border-radius: 10px;
}
input[type='submit'] {
background-color: white;
border-radius: 3px;
color: #302b63;
font-size: 16px;
border: 1px solid #302b63;
transition: all 0.2s ease-in-out;
}
input[type='submit']:hover {
cursor: pointer;
background-color: #302b63;
color: white;
}
</style>