-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebsitestylesheetcss
128 lines (108 loc) · 1.83 KB
/
websitestylesheetcss
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
body {
font-family: 'Dosis', sans-serif;
margin: 0 10%;
background-color: #e9ecef;
}
.container {
border: 1px solid #a2a2a6;
margin: 10px auto;
text-align: left;
background-color: #e9ecef;
border-radius: 5px;
padding: 20px;
-webkit-box-shadow: 3px 3px 6px #b8b9be, -3px -3px 6px #fff;
box-shadow: 3px 3px 6px #b8b9be, -3px -3px 6px #fff;
}
.color-container {
width: 100%;
}
.color-panel {
width: 20px;
border: 1px solid #a2a2a6;
border-radius: 5px;
-webkit-box-shadow: 3px 3px 6px #b8b9be, -3px -3px 6px #fff;
box-shadow: 3px 3px 6px #b8b9be, -3px -3px 6px #fff;
text-align: center;
margin: 10px;
width: 100px;
transition: width 2s;
}
.color-panel:hover {
width: 96%;
}
.red {
background-color: #e63946;
color: #e63946;
}
.red:hover {
color: #fff;
}
.stone {
background-color: #f1faee;
color: #f1faee;
}
.stone:hover {
color: #000
}
.aqua {
background-color: #a8dadc;
color: #a8dadc;
}
.aqua:hover {
color: #fff
}
.royal-blue {
background-color: #457b9d;
color: #457b9d;
}
.royal-blue:hover {
color: #fff
}
.deep-blue {
background-color: #1d3557;
color: #1d3557;
}
.deep-blue:hover {
color: #fff
}
.font-panel {
width: 45%;
display: inline-block;
}
.font-label {
font-size: 20px;
text-decoration: underline;
}
.regular {
font-style: normal;
}
.italic {
font-style: italic;
}
.bold {
font-weight: 700;
}
.family-cabin {
font-family: 'Cabin Sketch', cursive;
}
.lobster {
font-family: 'Lobster', cursive;
}
.dosis {
font-family: 'Dosis', sans-serif;
}
.text-panel h1 {
font-weight: 700;
font-size: 32px;
font-family: 'Lobster', cursive;
}
.text-panel h2 {
font-weight: 500;
font-size: 18px;
font-family: 'Dosis', sans-serif;
}
.text-panel p {
font-weight: 400;
font-size: 14px;
font-family: 'Family Cabin', cursive;
}