-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutility.css
126 lines (106 loc) · 1.74 KB
/
utility.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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
.container {
max-width: 1100px;
margin: 0 auto;
padding: 0 1rem;
}
.container-sm {
max-width: 800px;
margin: 0 auto;
padding: 0 15px;
}
.flex {
display: flex;
}
.item-center {
align-items: center;
}
.justify-center {
justify-content: center;
}
.justify-between {
justify-content: space-between;
}
/* Utility Classes */
.container {
max-width: 1100px;
margin: 0 auto;
padding: 0 15px;
}
.container-sm {
max-width: 800px;
margin: 0 auto;
padding: 0 15px;
}
/* Card */
.card {
background: #fff;
color: #000;
border-radius: 10px;
padding: 20px;
}
/* Buttons */
.btn {
display: inline-block;
padding: 13px 20px;
background: var(--light-color);
color: #333;
font-weight: 600;
text-decoration: none;
border: none;
border-radius: 10px;
cursor: pointer;
text-align: center;
transition: 0.5s;
}
.btn:hover {
opacity: 0.8;
}
.btn-primary {
background: var(--primary-color);
color: #fff;
}
.btn-dark {
background: var(--dark-color);
color: #fff;
}
.btn-block {
display: block;
width: 100%;
}
/* Text Classes */
.text-xxl {
font-size: 3rem;
line-height: 1.2;
font-weight: 600;
margin: 40px 0 20px;
}
.text-xl {
font-size: 2.2rem;
line-height: 1.4;
font-weight: normal;
margin: 40px 0 20px;
}
.text-lg {
font-size: 1.8rem;
line-height: 1.4;
font-weight: normal;
margin: 30px 0 20px;
}
.text-md {
font-size: 1.2rem;
line-height: 1.4;
font-weight: normal;
margin: 20px 0 10px;
}
.text-sm {
font-size: 0.9rem;
line-height: 1.4;
font-weight: normal;
margin: 10px 0 5px;
}
.text-center {
text-align: center;
}
.text-left {
text-align: left;
}