-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
81 lines (71 loc) · 1.59 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
body {
display: block;
font: "Raleway", sans-serif;
color: rgb(0, 0, 0);
text-align: center;
letter-spacing: .5em;
top: 15%;
background: linear-gradient(to right, red, yellow) no-repeat center center fixed;
height: 95vh;
}
input {
border-radius: 10px;
height: 50px;
box-shadow: 6px 6px 1px black;
background-color: rgba(0, 0, 0, .0);
cursor: pointer;
}
input:hover {
box-shadow: 3px 3px 3px black;
background-color: rgba(255, 255, 255, 0.3);
}
h1 {
font: 600 3em "Raleway", sans-serif;
text-align: center;
text-transform: uppercase;
width: 100%;
text-shadow: 6px 6px 10px black,
0px 0px 1px white;
}
h2 {
font-size: 3vh;
text-shadow: 6px 6px 5px black,
0px 0px 1px white;
text-transform: uppercase;
}
h3 {
font-size: 2.5vw;
text-align: center;
letter-spacing: 0.01em;
text-shadow: 6px 6px 5px black,
0px 0px 1px white;
}
h4 {
font-size: 20px;
letter-spacing: 0.01em;
text-shadow: 6px 6px 5px black,
0px 0px 1px white;
}
.btn {
background-color: rgba(0, 0, 0, .0);
border-radius: 25px;
height: 36px;
font-weight: bold;
font-size: 20px;
margin: 10px;
box-shadow: 6px 6px 1px black,
0px 0px 1px white;
text-shadow: 0px 0px 1px white;
cursor: pointer;
}
.btn:hover {
box-shadow: 3px 3px 3px black,
0px 0px 1px white;
background-color: rgba(255, 255, 255, .3);
}
.box {
height: 20vh;
margin: auto;
width: 40vw;
border: 5px solid black;
}