-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle3.css
More file actions
58 lines (51 loc) · 1 KB
/
style3.css
File metadata and controls
58 lines (51 loc) · 1 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
@import url('https://fonts.googleapis.com/css2?family=Merriweather&family=Varela+Round&display=swap');
body {
font-family: Arial, Helvetica, sans-serif;
font-size: 20px;
padding: 0 20px 30px 0;
line-height: 1.4;
font-family: 'Varela Round', sans-serif;
}
.flex-container{
margin-top: 20px;
display: flex;
flex-wrap: nowrap;
width: 100%;
height: 300px;
justify-content: center;
transition: 2s all ease;
align-items: flex-end;
}
.flex-item{
background: #2ff07f;
border: 1.5pt solid black;
width: 10px;
transition: 0.1s all ease;
}
.row{
display: grid;
grid-template-columns: 1fr 1fr 2fr;
}
#input{
display: flex;
padding: 10px;
justify-content: space-around;
}
.btn{
color: white;
background-color: blue;
border-radius: 15px;
}
.btn:hover{
color: black;
background-color:white;
}
#praja{
display: block;
margin-top: 25px;
}
#praja input{
margin-left: 7px;
width: 94px;
border-radius: 12px;
}