-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlight.css
More file actions
102 lines (89 loc) · 1.62 KB
/
light.css
File metadata and controls
102 lines (89 loc) · 1.62 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
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
93
94
95
96
97
98
99
100
101
102
* {
box-sizing: border-box;
padding: 0;
margin: 0;
font-family: "Open Sans", sans-serif;
font-weight: bold;
}
.wrapper {
height: 100vh;
width: 100%;
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
background-color: rgb(28, 231, 221);
transition: 0.8s all;
}
h1 {
text-align: center;
margin-botton: 1.5%;
color: #fff;
}
.container {
width: 300px;
}
.result {
width: 59.1%;
}
input {
padding: 25px;
color: rgb(87, 87, 87);
font-size: 1em;
cursor: pointer;
width: 70px;
background-color: #fff;
border: none;
outline: none;
border-radius: 4px;
}
.first-row, .second-row, .third-row, .fourth-row, .fifth-row {
margin-bottom: 3px;
}
input[type="button"] {
color: rgb(122, 122, 122);
}
input[type="text"] {
background-color: rgb(255, 255, 255);
width: 218px;
}
input[type="button"]:hover {
background-color: rgb(37, 35, 59);
color: #fff;
}
#clear {
color: #fff;
background-color: rgb(255, 25, 25);
}
button {
border: none;
background-color: rgb(41, 38, 38);
padding: 8px;
color: white;
margin: 2px;
cursor: pointer;
outline: none;
border-radius: 4px;
font-size: 0.8em;
font-weight: 200;
}
a {
text-decoration: none;
border: none;
background-color: rgb(41, 38, 38);
padding: 8px;
color: white;
margin: 2px;
cursor: pointer;
outline: none;
border-radius: 4px;
font-size: 0.8em;
font-weight: 200;
}
.bottom-buttons {
display: flex;
margin-left: -2.3px;
}
.fab {
font-size: 1.1em;
}