-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
57 lines (48 loc) · 884 Bytes
/
main.css
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
*{
margin:0;
padding: 0;
box-sizing: border-box;
font-family: montserrat, sans-serif;
}
body{
padding:20px;
min-width: 500px;
}
.wrapper{
align-items: center;
max-width: 500px;
}
.wrapper input{
width: 100%;
padding:10px;
font-size: 17px;
border: 1px solid black;
border-radius: 4px;
background-color:rgba(154, 228, 154, 0.747)
}
.wrapper input:focus{
outline: none;
}
.btn-wrapper{
align-items: start;
}
.btn-el{
background:rgb(103, 177, 103);
border:none;
border-radius: 3px;
padding:10px 20px;
margin-top: 10px;
font-size: 15px;
font-weight: 500;
margin-bottom: 10px;;
}
.btn-el:active{
transform: translate(1px,1px);
}
.clear{
background-color: rgb(199, 85, 85);
}
ul li{
list-style: none;
margin:5px;
}