-
Notifications
You must be signed in to change notification settings - Fork 0
/
stylep.css
80 lines (69 loc) · 1.36 KB
/
stylep.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
body{
margin: 0;
padding: 0;
background-color: rgb(21, 16, 34);
color: rgb(255, 255, 255);
font-family: "Lucida Console", "Monaco";
}
header{
position: fixed;
display: flex;
background-color: rgb(45, 47, 174);
flex-direction: row;
flex-wrap: wrap;
justify-content: space-between;
width: 100%;
z-index: 10;
}
h1{
font-size: 24px;
}
.left-text{
flex-basis: 48%;
text-align: left;
padding-left: 2%;
}
.right-text{
flex-basis: 48%;
text-align: right;
padding-right: 2%;
}
#container {
background-color: rgb(41, 40, 97);
width: 80%;
position: absolute;
top: 100px;
left: 10%;
padding: 20px;
border-radius: 20px;
}
#container h1{
text-align: center;
}
#back-button{
position: absolute;
top: 300px;
border-radius: 20px;
width: 25%;
left: 37%;
height: 100px;
}
#back-button button{
background-color: rgb(41, 40, 97);
padding: 10px;
width: 100%;
border-radius: 20px;
height: 100%;
transition-duration: 0.4s;
}
#back-button button:hover{
background-color: rgb(45, 47, 174);
color: white;
box-shadow: 0 12px 16px 0 rgba(255, 255, 255, 0.24), 0 17px 50px 0 rgba(255, 255, 255, 0.19);
}
#back-button a{
color: rgb(255, 255, 255);
font-family: "Lucida Console", "Monaco";
font-size: 48px;
text-decoration: none;
}