-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
63 lines (59 loc) · 1.1 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
body{
box-sizing: border-box;
background-color: black;
}
h1{
color: white;
font-size: 75px;
}
button{
border: none;
padding-top: 10px;
padding-bottom: 10px;
color: white;
font-weight: bold;
width: 100%;
margin-top: 10px;
margin-bottom: 5px;
background-color: red;
box-shadow: 0 1px 3px 5px blue;
}
#increment-btn{
background: darkred;
}
#save-btn{
background:darkred ;
}
header{
width: 100%;
height: 150px;
box-sizing: border-box;
display: flex;
align-items: center;
justify-content: center;
border:2px solid black ;
box-shadow: 0 1px 3px 5px blue;
}
p{
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 30px;
color: white;
border: 2px solid black;
box-shadow: 0 1px 3px 5px blue;
font-size: x-large;
}
.name{
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 100px;
margin-top: 20px;
margin-bottom: 10px;
color: white;
box-shadow: 0 1px 3px 5px white;
font-size: 90px;
}