-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
66 lines (64 loc) · 860 Bytes
/
Copy pathstyle.css
File metadata and controls
66 lines (64 loc) · 860 Bytes
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
* {
padding : 0;
margin : 0;
}
html{
font-size:1vh;
}
body {
background : white;
color : black;
height:80vh;
display:flex;
align-items: center;
padding:2em;
}
.container{
display:flex;
flex-direction:column;
border:3px solid blac;
width:70vh;
margin:auto;
margin-top:5em;
justify-content:center;
align-items:center;
gap:2em;
border-radius:5em;
background-color:#D3D3D3;
}
.box{
display:flex;
flex-direction:column;
width:70%;
gap:2rem;
}
.one{
margin-top:8em;
}
.two{
background:blu;
margin-bottom:4em;
}
button{
font-size:2em;
font-style:bold;
height:3em;
border-radius:65px;
background-color:#F5F5F5;
}
.input{
display:flex;
flex-direction:column;
width:70%;
gap:1rem;
}
.input>input{
height:3.5rem;
border-radius:65px;
padding:1em;
text-align:center;
font-size:1.5em;
}
.last_h{
margin-bottom:8em;
}