-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
92 lines (63 loc) · 1.32 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
body {
background-color: rgb(247, 247, 247);
font-family: sans-serif;
}
#page {
margin: 25px;
}
#input-field {
max-width: 300px;
padding: 1px 20px 60px 20px;
margin: 10px;
text-align: center;
background-color: rgb(233, 233, 233);
border-radius: 10px;
color: rgb(26, 26, 26);
box-shadow: 0px 20px 50px -15px rgb(221, 221, 221);
}
#the-input {
border-radius: 5px;
border-color: rgb(43, 21, 139);
border-style: outset;
width: 200px;
height: 20px;
}
.button {
padding: 5px;
margin: 15px;
border-radius: 5px;
border: none;
background-color: rgb(214, 214, 214);
color: rgb(15, 15, 15);
font-weight: bold;
}
#create-preset {
float: right;
}
#button {
float: left;
}
.button:active {
/*border: outset rgb(43, 21, 139) 2px;
border-radius: 15px;*/
background-color:#F6F6F6 ;
}
.the-displays {
max-width: 300px;
margin: 20px auto 20px 30px;
font-family: sans-serif;
color: rgb(26, 26, 26);
padding: 10px 0px;
text-transform: capitalize;
}
#presets button {
text-transform: capitalize;
padding: 5px;
margin: 5px;
border-radius: 5px;
border: none;
background-color: #F1F1F1;
color: rgb(15, 15, 15);
}
@media only screen and (min-width: 500px) {
}