-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex_css.html
68 lines (56 loc) · 871 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<style>
* {
font-family: 'Krub', sans-serif;
color: white;
}
body {
background: linear-gradient(60deg, #990000 50%, #011F5B 50%);
height: 100vh;
}
#container {
display: grid;
grid-template-columns: auto auto;
margin: 15vh 10vw;
}
#image {
text-align: center;
margin-top: 10vh
}
img {
width: 30vw;
}
#form {
margin-left: 12vw;
}
#data {
margin-top: 30vh;
margin-left: 8vw;
padding: 15px;
border: 1px solid white;
border-radius: 10px;
box-shadow: 0 2px 5px #ddd;
}
h1 {
position: absolute;
font-size: 54px;
}
label {
font-size: 18px;
}
input {
background-color: transparent;
border-color: white;
border-radius: 10px;
outline: none;
padding: 10px;
margin-bottom: 10px;
}
input[type='file'] {
width: 200px;
padding-top: 0px;
}
input[type='submit'] {
cursor: pointer;
background-color: #fff3;
}
</style>