-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
111 lines (91 loc) · 1.71 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
*{
margin: 0;
box-sizing: content-box;
padding: 0;
}
body {
width:400px;
height:300px;
}
.title-msg{
text-align: center;
font-family: sans-serif;
font-variant-caps: petite-caps;
text-shadow: -1px 2px 4px red;
color: red;
margin-top:50px;
}
.btn-container{
display: flex;
flex-direction: column;
align-items: stretch;
margin: 1rem;
width: auto;
}
.add-advice{
padding: 2%;
font-size: 18px;
font-family: monospace;
font-weight: bolder;
color: darkblue;
margin: 0.5rem;
border-radius: 6px;
box-shadow: 1px 4px 10px midnightblue;
}
.add-startup{
padding: 2%;
font-size: 18px;
font-family: monospace;
font-weight: bolder;
color: green;
margin: 0.5rem;
border-radius: 6px;
box-shadow: 1px 4px 10px greenyellow;
}
.search-marvel{
padding: 2%;
font-size: 18px;
font-family: monospace;
font-weight: bolder;
color: black;
margin: 0.5rem;
border-radius: 6px;
box-shadow: 1px 4px 10px darkolivegreen;
}
.list{
padding: 1%;
font-size: 16px;
font-family: monospace;
font-weight: bolder;
color: black;
margin: 1rem;
border-radius: 6px;
box-shadow: 1px 4px 10px darkolivegreen;
}
.saving{
padding: 1%;
font-size: 16px;
font-family: monospace;
font-weight: bolder;
color: green;
margin: 0.5rem;
border-radius: 6px;
box-shadow: 1px 4px 10px darkolivegreen;
}
input{
width: 90%;
margin: 4%;
}
.data{
text-align: center;
margin: 10%;
display: inline-block;
}
.backBtn{
width: 100px;
height: 50px;
font-size: large;
font-weight: bold;
color: darkblue;
background: darkgray;
}