-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
84 lines (73 loc) · 1.39 KB
/
styles.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
background-color: burlywood;
}
h1{
display: flex;
text-align: center;
justify-content: center;
font-family: 'Roboto', sans-serif;
font-weight: bold;
font-size: 40px;
padding: 18px;
color: black;
margin: 3px;
border: 0;
border-radius: 100%;
}
#container{
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
padding-bottom: 10rem;
}
#appBg{
height: 25rem;
width: 20rem;
}
#appBg form{
padding: 6px;
height: 100%;
width: 100%;
background-color: black;
border-radius: 10px;
box-shadow: 5px 5px 5px 5px black;
}
#appBg input[type=textfield]{
height: 25%;
width: 100%;
cursor: default;
font-family: 'Roboto', sans-serif;
background-color: white;
color: black;
padding: 15px;
text-align: center;
font-size: 50px;
border: 0;
outline: none;
}
#appBg input[type=button], input[type=reset]{
width: 22%;
cursor: pointer;
font-family: 'Roboto', sans-serif;
font-weight: bold;
font-size: 25px;
padding: 18px;
color: black;
margin: 3px;
border: 0;
border-radius: 100%;
}
#appBg .orange{
background-color: rgb(253, 149, 3);
color: white !important;
}
#appBg .gray{
background-color: rgb(51, 51, 51);
color: white !important;
}