-
Notifications
You must be signed in to change notification settings - Fork 2
/
signal.css
89 lines (77 loc) · 1.71 KB
/
signal.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
:root {
--light_grey:#e9e9e9;
--grey:#a5bca8;
--light_blue: #b2c9b5;
--teal: #004D40;
--red: #B71C1C;
--purple: #4A148C;
--pink: #880E4F;
--orange: #E65100;
--light_green: #33691E;
--indigo: #1A237E;
--green: #33691E;
--brown: #3E2723;
--blue_grey: #263238;
--blue: #0D47A1;
}
[class*="col-"] { margin-bottom: 20px; }
img { width: 100%; }
body { margin-top: 10px; }
[class*="col-"], footer {
border: 2px solid black;
border-radius: 6px;
line-height: 40px;
text-align: left;
font: 22px Baskerville, "Palatino Linotype", "Times New Roman", Times, serif;
text-align: left;
}
.col-md-2.react_myself{
background-color: var(--green);
border: 2px solid var(--green);
line-height: 40px;
color: white;
}
.col-md-12.name_myself{
background-color: var(--grey);
border: 2px solid var(--grey);
line-height: 40px;
margin-top: 10px;
color: black;
}
.col-md-6.msg_myself{
background-color: var(--light_grey);
border: 2px solid var(--light_grey);
line-height: 40px;
color: black;
}
.col-md-12.quote_myself{
background-color: var(--grey);
border: 2px solid var(--grey);
line-height: 40px;
color: black;
}
.col-md-2.react_mycontact{
background-color: var(--light_grey);
border: 2px solid var(--light_grey);
line-height: 40px;
color: black;
}
.col-md-6.msg_mycontact{
background-color: var(--green);
border: 2px solid var(--green);
line-height: 40px;
color: white;
}
.col-md-12.quote_mycontact{
background-color: var(--light_blue);
border: 2px solid var(--light_blue);
line-height: 40px;
color: black;
}
.col-md-12.name_mycontact{
background-color: var(--light_blue);
border: 2px solid var(--light_blue);
line-height: 40px;
margin-top: 10px;
color: black;
}