-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
52 lines (46 loc) · 966 Bytes
/
styles.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
body {
background-color: #212529;
color: #495057;
}
.notepad {
width: 500px;
height: 500px;
padding: 10px;
border: #fff;
background-color: #dee2e6;
display: flex;
justify-content: center;
align-items: center;
border-radius: 10px;
box-shadow: #495057;
}
.saveButton {
border: 1px #fff solid;
background-color: #fff;
border-radius: 4px;
margin-top: 10px;
margin-left: 870px;
width: 100px;
}
.saveButton:hover {
cursor: pointer;
}
.header {
text-align: center;
font-size: 100px;
color: #fff;
}
.footer {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: 15px;
color: #fff;
text-align: center;
margin-top: 20px;
}
.footer > a{
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: 15px;
color: #dee2e6;
text-align: center;
margin-top: 100px;
}