-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
85 lines (73 loc) · 1.44 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
background-color: #111;
font-family: poppins;
}
header {
font-size: 25px;
font-weight: 400;
color: rgb(210, 210, 210);
background-color: rgb(230, 60, 60);
text-align: center;
margin-top: 10px;
margin-left: 10px;
margin-right: 10px;
border-radius: 5px;
}
.container {
border: 2px solid whitesmoke;
border-radius: 5px;
height: 300px;
margin: 10px 10px;
}
.container h1 {
font-size: 30px;
font-weight: 400;
color: rgb(210, 210, 210);
margin-top: 10px;
margin-left: 20px;
}
.sidebar {
color: rgb(210, 210, 210);
margin-left: 40px;
margin-top: 20px;
}
.action input {
margin-left: 20px;
margin-top: 15px;
background-color: rgb(210, 210, 210);
border: none;
border-radius: 3px;
padding: 3px;
padding-left: 10px;
}
button {
color: rgb(210, 210, 210);
background-color: rgb(230, 60, 60);
border: none;
border-radius: 3px;
padding: 3px;
}
@media (max-width: 425px) {
header {
font-size: 30px;
}
.container h1 {
font-size: 43px;
}
.action input {
padding: 5px;
width: 250px;
font-size: 18px;
margin-right:5px;
}
button {
padding: 5px;
font-size: 18px
}
.sidebar {
font-size: 20px;
}
}