-
Notifications
You must be signed in to change notification settings - Fork 4
/
style.css
70 lines (63 loc) · 1.26 KB
/
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
67
68
69
70
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css2?family=La+Belle+Aurore&display=swap');
html,body{
height: 100%;
width: 100%;
font-family: 'Roboto', sans-serif;
}
.button{
margin: 0 3px;
padding: 20px;
border: 2px solid black;
border-radius: 49px;
cursor: pointer;
font-weight: bold;
width: 66px;
color: white;
font-size: larger;
background-color: rgba(51, 41, 41, 0.964);
}
.button:hover{
opacity: .5;
}
.row{
margin: 8px 0;
}
.row input{
margin: 0;
padding: 10px 0px;
border: 2px solid black;
border-radius: 5px;
font-size: 20px;
width: 295px;
}
.yellow{
background-color: rgb(255, 187, 0);
color: black;
}
.red{
background-color: red;
}
.container{
background-color:rgba(0, 0, 0, 0.151);
margin: auto;
width: 20%;
padding: 20px;
box-shadow: 0px 0px 8px 1px;
}
h1{
background-color: rgb(255, 192, 2);
margin: auto;
width: 20.6%;
padding: 15px;
margin-top: 40px;
margin-bottom: 5px;
box-shadow: 0px 0px 8px 1px;
}
p{
font-size: 24px;
font-weight: bold;
margin-bottom: 0px;
color: rgb(0, 0, 0);
font-family: 'La Belle Aurore', cursive;
}