-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
80 lines (66 loc) · 1.08 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
*{
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
.logo{
display: flex;
}
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header {
background-color: #0f6576;
color: white;
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 20px;
}
.logo img {
width: 50px;
height: 50px;
margin-top:22px ;
}
.title {
font-size: 24px;
}
main {
padding: 20px;
}
#footer {
background-color: #0f6576;
color: white;
display: flex;
justify-content: space-around;
align-items: center;
padding: 10px 20px;
position: fixed;
bottom: 0;
width: 100%;
left: 0;;
}
.left, .right {
display: flex;
align-items: center;
}
#content {
text-align: center;
}
.button {
background-color: #0d0d0e;
color: white;
padding: 10px 20px;
border: none;
cursor: pointer;
border-radius: 10px;
margin: 10px 10px;
}
.button:hover{
background-color: #0f6576;
}
.button:disabled {
background-color: gray;
cursor: not-allowed;
}