-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
45 lines (40 loc) · 868 Bytes
/
style.css
File metadata and controls
45 lines (40 loc) · 868 Bytes
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
body{
font-family: Arial, Helvetica, sans-serif;
font-weight: bolder;
text-align: center;
margin-top: 20vh;
font-size: 24pt;
background-color: rgb(255, 255, 255);
}
input#text{
color: white;
text-shadow:-1px -1px 0 black,
1px -1px 0 black,
-1px 1px 0 black,
1px 1px 0 black;
}
div#result{
transform: translateY(5vh);
margin: auto;
height: auto;
width: 350px;
background-color: rgba(0, 0, 0, 0.466);
padding: 20px;
border-radius: 25px;
}
button#rand{
padding: 10px;
font-size: 16pt;
background-color: rgb(255,255,255);
border-style: none;
border-radius: 10px;
border-spacing: 100px;
box-shadow: 1px 1px 0px 1px rgba(0, 0, 0, 0.288);
}
footer#footer{
left: 0;
transform: translateY(100px);
}
a:visited{
color:black;
}