-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
97 lines (86 loc) · 1.67 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
@import url('https://fonts.googleapis.com/css2?family=Tilt+Prism&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
display: flex;
flex-direction: column;
align-items: center;
background-color: rgb(88, 45, 45);
}
h1 {
width: fit-content;
position: relative;
top: 30px;
text-align: center;
font-size: 50px;
font-family: 'Tilt Prism', cursive;
background-color: #bb8e12;
padding: 10px;
border-radius: 15px;
}
form {
border: 4px solid #bb8e12;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 350px;
height: 150px;
position: relative;
top: 100px;
border-radius: 15px;
}
#textfield {
width: 70%;
height: 40%;
margin: 10px;
padding: 10px;
font-size: 30px;
}
#submitBtn {
width: 30%;
height: 30%;
font-size: 22px;
cursor: pointer;
}
#showScreen {
width: 350px;
height: 70px;
position: relative;
top: 120px;
text-align: center;
font-size: 40px;
font-family: 'Tilt Prism', cursive;
}
ul {
position: relative;
top: 150px;
font-size: 30px;
list-style: none;
text-align: center;
font-family: 'Tilt Prism', cursive;
background-color: rgb(173, 104, 104);
padding: 10px;
border-radius: 15px;
}
footer {
position: absolute;
color: #fff;
background-color: rgb(8, 8, 8);
font-size: 20px;
top: 92vh;
width: 100%;
height: 8vh ;
padding: 20px;
display: flex;
flex-direction: center;
align-items: center;
justify-content: space-between;
}
footer .fa-brands {
font-size: 40px;
color: #fff;
}