-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
66 lines (59 loc) · 1.12 KB
/
style.css
File metadata and controls
66 lines (59 loc) · 1.12 KB
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
*{
margin:0;
padding:0;
font-family: "Edu SA Hand", cursive;
box-sizing:border-box;
}
.container {
width: 100%;
min-height: 100vh;
background: linear-gradient(135deg, #f598a8, #f6edb2);
color:black;
padding-top: 4%;
padding-left: 10%;
}
.container h1{
height: 80px;
display:flex;
align-items:centre;
font-size:50px;
font-weight:600;
}
.container button img{
width: 25px;
margin-right: 8px;
}
.container button{
display: flex;
align-items: center;
background:fef8e4;
color: black;
font-size: 20px;
outline: 0;
border: 0;
border-radius: 40px;
padding:15px 25px;
margin: 30px 0 20px;
cursor:pointer;
}
.input-box{
border-style: dotted;
position:relative;
width: 100%;;
max-width: 500px;
min-height:150px;
background: rgb(249, 247, 247);
color:black;
padding:20px;
margin:20px 0;
outline:none;
border-radius: 5px;
}
.input-box img{
width:32px;
height: 32px;
position: absolute;
bottom: 14px;
right:15px;
cursor:pointer;
}