-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
69 lines (61 loc) · 1.26 KB
/
style.css
File metadata and controls
69 lines (61 loc) · 1.26 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
body {
margin: 0px;
font-size: 20px;
background-color: rgb(232, 207, 207);
}
.text-center {
text-align: center;
}
.heading {
font-family: cursive;
font-weight: 200;
color: black;
}
.container {
height: 60vh;
width: 20vw;
display: flex;
flex-direction: column;
justify-content: space-around;
border: solid 2px red;
margin: auto;
/* background-image: linear-gradient(to right, black, grey); */
background-color: black;
}
.row {
height: 12%;
width: 98%;
/* border: solid 2px blue; */
display: flex;
flex-direction: row;
justify-content: space-around;
margin: auto;
}
#input-box {
height: 100%;
width: 95%;
border-radius: 6px;
cursor: pointer;
font-size: 1.6rem;
background-image: linear-gradient(to right, white, rgb(166, 163, 163));
}
.btn {
width: 20%;
height: 90%;
border: solid 2px green;
border-radius: 6px;
margin: auto;
cursor: pointer;
text-align: center;
padding: 10px 10px;
box-sizing: border-box;
background-color: white;
background-image: linear-gradient(to right, white, rgb(166, 163, 163));
font-family: cursive;
font-weight: 200;
color: black;
opacity: 0.8;
}
.btn:hover {
opacity: 1;
}