-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
66 lines (54 loc) · 965 Bytes
/
style.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
58
59
60
61
62
63
64
65
66
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&family=Ubuntu:wght@300&display=swap');
html, body {
height: 100%;
width: 100%;
font-family: 'Roboto', sans-serif;
}
.button{
width: 66px;
padding: 20px;
background-color: yellow;
margin: 0 3px;
border: 2px solid black;
border-radius: 9px;
cursor: pointer;
border-color: blue;
border: 2px;
}
button:hover{
background-color: yellowgreen;
}
.row{
margin: 8px 0;
}
.row input{
width: 291px;
font-size: 20px;
margin: 0;
padding: 10px 0px;
border: 2px solid black;
border-radius: 5px;
}
.text-center{
text-align: center;
}
.bg-red{
background: red;
}
.mx-auto{
margin: auto;
}
.flex{
display:flex;
}
.flex-col{
flex-direction: column;
}
.items-center{
align-items: center;
}
.container{
margin-left: 30%;
margin-right: 30%;
border-radius: 25px;
}