-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
88 lines (80 loc) · 1.5 KB
/
style.css
File metadata and controls
88 lines (80 loc) · 1.5 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.container {
background: #222;
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
align-content: center;
gap: 40px;
}
h1 {
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
text-transform: uppercase;
/* background-color: rgb(50, 50, 50); */
color: #ffffffb3;
width: 58%;
text-align: center;
text-shadow: 0 2px 5px #000000;
}
.input {
width: 21%;
height: 5%;
text-align: center;
font-size: 1.5rem;
font-weight: 600;
font-family: Verdana, Geneva, Tahoma, sans-serif;
outline: none;
border-radius: 10px;
border: none;
box-shadow: 0 2px 10px #000000;
padding: 5px;
color: #ffff;
background-color: #4e4e4ea2;
}
button {
width: 12%;
height: 4%;
background-color: #4e4e4ea2;
border: none;
outline: none;
color: #fff;
border-radius: 5px;
font-size: 98%;
box-shadow: 0 2px 10px #000000;
}
button:hover {
background-color: #777777a2;
color: black;
cursor: pointer;
}
.res {
/* background-color: #4e4e4ea2; */
width: fit-content;
height: fit-content;
font-size: 1.5rem;
color: #ffffffa8;
text-shadow: 0 2px 5px #000000;
}
@media screen and (max-width: 600px) {
.container {
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
align-content: center;
gap: 40px;
}
.input {
width: 130px;
font-size: 1rem;
}
}