Skip to content

Commit 3eae624

Browse files
Create index_css.html
1 parent 178453c commit 3eae624

File tree

1 file changed

+68
-0
lines changed

1 file changed

+68
-0
lines changed

index_css.html

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
<style>
2+
3+
* {
4+
font-family: 'Krub', sans-serif;
5+
color: white;
6+
}
7+
8+
body {
9+
background: linear-gradient(60deg, #990000 50%, #011F5B 50%);
10+
height: 100vh;
11+
}
12+
13+
#container {
14+
display: grid;
15+
grid-template-columns: auto auto;
16+
margin: 15vh 10vw;
17+
}
18+
19+
#image {
20+
text-align: center;
21+
margin-top: 10vh
22+
}
23+
24+
img {
25+
width: 30vw;
26+
}
27+
28+
#form {
29+
margin-left: 12vw;
30+
}
31+
32+
#data {
33+
margin-top: 30vh;
34+
margin-left: 8vw;
35+
padding: 15px;
36+
border: 1px solid white;
37+
border-radius: 10px;
38+
box-shadow: 0 2px 5px #ddd;
39+
}
40+
41+
h1 {
42+
position: absolute;
43+
font-size: 54px;
44+
}
45+
46+
label {
47+
font-size: 18px;
48+
}
49+
50+
input {
51+
background-color: transparent;
52+
border-color: white;
53+
border-radius: 10px;
54+
outline: none;
55+
padding: 10px;
56+
margin-bottom: 10px;
57+
}
58+
59+
input[type='file'] {
60+
width: 200px;
61+
padding-top: 0px;
62+
}
63+
64+
input[type='submit'] {
65+
cursor: pointer;
66+
background-color: #fff3;
67+
}
68+
</style>

0 commit comments

Comments
 (0)