-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
95 lines (69 loc) · 1.26 KB
/
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
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
* {
box-sizing: border-box;
}
.app{
background-image: url("back-77.png");
width: 700px;
background-size:cover;
height: 100%;
overflow: hidden;
margin: auto;
border: 5px solid gold;
}
body {
background-image: url("back4.png");
background-size:cover;
font-family: 'Segoe UI', 'Open Sans', 'Helvetica Neue', sans-serif;
font-weight: bold;
text-align: center;
box-sizing: border-box;
margin: auto;
}
h1 {
margin-top: 7%;
margin-bottom: 10%;
}
h2 {
font-size: 50px;
margin-top: 12%;
margin-bottom: 2%;
}
p{
margin: 15% auto 0%;
height: 15%;
width: 60%;
overflow-y: auto;
background-color: ghostwhite;
opacity: 0.9;
padding: 1% 2%;
border-radius: 10px;
}
button {
border: none;
padding-top: 10px;
padding-bottom: 10px;
color: white;
font-weight: bold;
width: 40%;
height: 7%;
margin-top: 55%;
margin-bottom: 15px;
border-radius: 5px;
}
#increment-btn {
background: rgb(221, 44, 13);
}
#save-btn {
background: darkgreen;
}
@media (max-width: 700px) {
.app{
width: 100vw;
height: 100vh;
}
}
@media (max-height: 600px) {
.app{
height: fit-content;
}
}